summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@edx.srv.br>2013-08-11 10:17:45 -0300
committerCaolán McNamara <caolanm@redhat.com>2013-08-11 19:36:37 +0000
commit305187377b3e21cc6df890f165a1212db83f0022 (patch)
tree637fec13da150bbaa874effb816f48800726117c /cui
parent5cdfc962b69f2c1f6df555db6bacbec10e619069 (diff)
Replace write data error message box with new UI
Replace occurences of error box with RID_SVXSTR_WRITE_DATA_ERROR into new widget UI Change-Id: I78ab59e30655f729dbe04ec145edcd3b3811254b Reviewed-on: https://gerrit.libreoffice.org/5347 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/inc/cuires.hrc2
-rw-r--r--cui/source/tabpages/strings.src4
-rw-r--r--cui/source/tabpages/tpbitmap.cxx5
-rw-r--r--cui/source/tabpages/tpcolor.cxx6
-rw-r--r--cui/source/tabpages/tpgradnt.cxx5
-rw-r--r--cui/source/tabpages/tphatch.cxx5
-rw-r--r--cui/source/tabpages/tplnedef.cxx4
7 files changed, 16 insertions, 15 deletions
diff --git a/cui/source/inc/cuires.hrc b/cui/source/inc/cuires.hrc
index 737ebbba1c63..cc1eec8091a9 100644
--- a/cui/source/inc/cuires.hrc
+++ b/cui/source/inc/cuires.hrc
@@ -96,7 +96,7 @@
#define RID_SVXSTR_ASK_DEL_COLOR (RID_SVX_START + 217)
#define RID_SVXSTR_ASK_CHANGE_COLOR (RID_SVX_START + 218)
#define RID_SVXSTR_TABLE (RID_SVX_START + 220)
-#define RID_SVXSTR_WRITE_DATA_ERROR (RID_SVX_START + 229)
+
#define RID_SVXSTR_READ_DATA_ERROR (RID_SVX_START + 230)
#define RID_SVXSTR_WARN_TABLE_OVERWRITE (RID_SVX_START + 231)
#define RID_SVXSTR_WARN_NAME_DUPLICATE (RID_SVX_START + 236)
diff --git a/cui/source/tabpages/strings.src b/cui/source/tabpages/strings.src
index cf42f8d2036e..c027c06902d3 100644
--- a/cui/source/tabpages/strings.src
+++ b/cui/source/tabpages/strings.src
@@ -91,10 +91,6 @@ String RID_SVXSTR_TABLE
{
Text [ en-US ] = "Table" ;
};
-String RID_SVXSTR_WRITE_DATA_ERROR
-{
- Text [ en-US ] = "The file could not be saved!" ;
-};
String RID_SVXSTR_READ_DATA_ERROR
{
Text [ en-US ] = "The file could not be loaded!" ;
diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx
index fe837183d524..d5de83064669 100644
--- a/cui/source/tabpages/tpbitmap.cxx
+++ b/cui/source/tabpages/tpbitmap.cxx
@@ -889,8 +889,9 @@ IMPL_LINK_NOARG(SvxBitmapTabPage, ClickSaveHdl_Impl)
}
else
{
- ErrorBox( GetParentDialog(), WinBits( WB_OK ),
- String( CUI_RES( RID_SVXSTR_WRITE_DATA_ERROR ) ) ).Execute();
+ MessageDialog( GetParentDialog()
+ ,"NoSaveFileDialog"
+ ,"cui/ui/querynosavefiledialog.ui").Execute();
}
}
diff --git a/cui/source/tabpages/tpcolor.cxx b/cui/source/tabpages/tpcolor.cxx
index ec7d0ac07fe3..b47acba36374 100644
--- a/cui/source/tabpages/tpcolor.cxx
+++ b/cui/source/tabpages/tpcolor.cxx
@@ -240,9 +240,9 @@ IMPL_LINK_NOARG(SvxColorTabPage, ClickSaveHdl_Impl)
}
else
{
- ErrorBox aErrorBox( mpTopDlg, WinBits( WB_OK ),
- String( CUI_RES( RID_SVXSTR_WRITE_DATA_ERROR ) ) );
- aErrorBox.Execute();
+ MessageDialog( mpTopDlg
+ ,"NoSaveFileDialog"
+ ,"cui/ui/querynosavefiledialog.ui").Execute();
}
}
return 0;
diff --git a/cui/source/tabpages/tpgradnt.cxx b/cui/source/tabpages/tpgradnt.cxx
index 36b773a59efb..c41bcee9d7fd 100644
--- a/cui/source/tabpages/tpgradnt.cxx
+++ b/cui/source/tabpages/tpgradnt.cxx
@@ -758,8 +758,9 @@ IMPL_LINK_NOARG(SvxGradientTabPage, ClickSaveHdl_Impl)
}
else
{
- ErrorBox( GetParentDialog(), WinBits( WB_OK ),
- String( CUI_RES( RID_SVXSTR_WRITE_DATA_ERROR ) ) ).Execute();
+ MessageDialog( GetParentDialog()
+ ,"NoSaveFileDialog"
+ ,"cui/ui/querynosavefiledialog.ui").Execute();
}
}
diff --git a/cui/source/tabpages/tphatch.cxx b/cui/source/tabpages/tphatch.cxx
index c65bf712a541..9336dab1319e 100644
--- a/cui/source/tabpages/tphatch.cxx
+++ b/cui/source/tabpages/tphatch.cxx
@@ -791,8 +791,9 @@ IMPL_LINK_NOARG(SvxHatchTabPage, ClickSaveHdl_Impl)
}
else
{
- ErrorBox( GetParentDialog(), WinBits( WB_OK ),
- String( CUI_RES( RID_SVXSTR_WRITE_DATA_ERROR ) ) ).Execute();
+ MessageDialog( GetParentDialog()
+ ,"NoSaveFileDialog"
+ ,"cui/ui/querynosavefiledialog.ui").Execute();
}
}
diff --git a/cui/source/tabpages/tplnedef.cxx b/cui/source/tabpages/tplnedef.cxx
index 974a6458570d..fb5cb61f3be4 100644
--- a/cui/source/tabpages/tplnedef.cxx
+++ b/cui/source/tabpages/tplnedef.cxx
@@ -828,7 +828,9 @@ IMPL_LINK_NOARG(SvxLineDefTabPage, ClickSaveHdl_Impl)
}
else
{
- ErrorBox( GetParentDialog(), WinBits( WB_OK ), OUString( CUI_RES( RID_SVXSTR_WRITE_DATA_ERROR ) ) ).Execute();
+ MessageDialog( GetParentDialog()
+ ,"NoSaveFileDialog"
+ ,"cui/ui/querynosavefiledialog.ui").Execute();
}
}