summaryrefslogtreecommitdiff
path: root/sw/source/ui/table
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/table')
-rw-r--r--sw/source/ui/table/convert.cxx2
-rw-r--r--sw/source/ui/table/tabledlg.cxx2
-rw-r--r--sw/source/ui/table/tautofmt.cxx28
3 files changed, 16 insertions, 16 deletions
diff --git a/sw/source/ui/table/convert.cxx b/sw/source/ui/table/convert.cxx
index 4c67c428076f..d37c808cce8a 100644
--- a/sw/source/ui/table/convert.cxx
+++ b/sw/source/ui/table/convert.cxx
@@ -95,7 +95,7 @@ void SwConvertTableDlg::GetValues( sal_Unicode& rDelim,
SwConvertTableDlg::SwConvertTableDlg( SwView& rView, bool bToTable )
: SfxModalDialog(&rView.GetViewFrame()->GetWindow(), "ConvertTextTableDialog", "modules/swriter/ui/converttexttable.ui" )
- , sConvertTextTable(SW_RES(STR_CONVERT_TEXT_TABLE))
+ , sConvertTextTable(SwResId(STR_CONVERT_TEXT_TABLE))
, pTAutoFormat(nullptr)
, pShell(&rView.GetWrtShell())
{
diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx
index 603fa93c7fb5..465fdc9c4b62 100644
--- a/sw/source/ui/table/tabledlg.cxx
+++ b/sw/source/ui/table/tabledlg.cxx
@@ -628,7 +628,7 @@ DeactivateRC SwFormatTablePage::DeactivatePage( SfxItemSet* _pSet )
OUString sTableName = m_pNameED->GetText();
if(sTableName.indexOf(' ') != -1)
{
- ScopedVclPtrInstance<MessageDialog>(this, SW_RES(STR_WRONG_TABLENAME), VclMessageType::Info)->Execute();
+ ScopedVclPtrInstance<MessageDialog>(this, SwResId(STR_WRONG_TABLENAME), VclMessageType::Info)->Execute();
m_pNameED->GrabFocus();
return DeactivateRC::KeepPage;
}
diff --git a/sw/source/ui/table/tautofmt.cxx b/sw/source/ui/table/tautofmt.cxx
index 0af33923bf71..5e5701f3ce80 100644
--- a/sw/source/ui/table/tautofmt.cxx
+++ b/sw/source/ui/table/tautofmt.cxx
@@ -142,13 +142,13 @@ void SwStringInputDlg::dispose()
SwAutoFormatDlg::SwAutoFormatDlg( vcl::Window* pParent, SwWrtShell* pWrtShell,
bool bAutoFormat, const SwTableAutoFormat* pSelFormat )
: SfxModalDialog(pParent, "AutoFormatTableDialog", "modules/swriter/ui/autoformattable.ui")
- , aStrTitle(SW_RES(STR_ADD_AUTOFORMAT_TITLE))
- , aStrLabel(SW_RES(STR_ADD_AUTOFORMAT_LABEL))
- , aStrClose(SW_RES(STR_BTN_AUTOFORMAT_CLOSE))
- , aStrDelTitle(SW_RES(STR_DEL_AUTOFORMAT_TITLE))
- , aStrDelMsg(SW_RES(STR_DEL_AUTOFORMAT_MSG))
- , aStrRenameTitle(SW_RES(STR_RENAME_AUTOFORMAT_TITLE))
- , aStrInvalidFormat(SW_RES(STR_INVALID_AUTOFORMAT_NAME))
+ , aStrTitle(SwResId(STR_ADD_AUTOFORMAT_TITLE))
+ , aStrLabel(SwResId(STR_ADD_AUTOFORMAT_LABEL))
+ , aStrClose(SwResId(STR_BTN_AUTOFORMAT_CLOSE))
+ , aStrDelTitle(SwResId(STR_DEL_AUTOFORMAT_TITLE))
+ , aStrDelMsg(SwResId(STR_DEL_AUTOFORMAT_MSG))
+ , aStrRenameTitle(SwResId(STR_RENAME_AUTOFORMAT_TITLE))
+ , aStrInvalidFormat(SwResId(STR_INVALID_AUTOFORMAT_NAME))
, pShell(pWrtShell)
, nIndex(0)
, nDfltStylePos(0)
@@ -509,13 +509,13 @@ AutoFormatPreview::AutoFormatPreview(vcl::Window* pParent, WinBits nStyle) :
aVD ( VclPtr<VirtualDevice>::Create(*this) ),
bFitWidth ( false ),
mbRTL ( false ),
- aStrJan ( SW_RES( STR_JAN ) ),
- aStrFeb ( SW_RES( STR_FEB ) ),
- aStrMar ( SW_RES( STR_MAR ) ),
- aStrNorth ( SW_RES( STR_NORTH ) ),
- aStrMid ( SW_RES( STR_MID ) ),
- aStrSouth ( SW_RES( STR_SOUTH ) ),
- aStrSum ( SW_RES( STR_SUM ) )
+ aStrJan ( SwResId( STR_JAN ) ),
+ aStrFeb ( SwResId( STR_FEB ) ),
+ aStrMar ( SwResId( STR_MAR ) ),
+ aStrNorth ( SwResId( STR_NORTH ) ),
+ aStrMid ( SwResId( STR_MID ) ),
+ aStrSouth ( SwResId( STR_SOUTH ) ),
+ aStrSum ( SwResId( STR_SUM ) )
{
uno::Reference< uno::XComponentContext > xContext = comphelper::getProcessComponentContext();
m_xBreak = i18n::BreakIterator::create(xContext);