summaryrefslogtreecommitdiff
path: root/sw/source/ui/index/swuiidxmrk.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/index/swuiidxmrk.cxx')
-rw-r--r--sw/source/ui/index/swuiidxmrk.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/index/swuiidxmrk.cxx b/sw/source/ui/index/swuiidxmrk.cxx
index cc5e6ee1567b..a4b817296e76 100644
--- a/sw/source/ui/index/swuiidxmrk.cxx
+++ b/sw/source/ui/index/swuiidxmrk.cxx
@@ -135,7 +135,7 @@ SwIndexMarkPane::SwIndexMarkPane(Dialog &rDialog, bool bNewDlg,
m_pPhoneticED2->Show();
}
- rDialog.SetText( SW_RESSTR( bNewMark ? STR_IDXMRK_INSERT : STR_IDXMRK_EDIT));
+ rDialog.SetText( SwResId( bNewMark ? STR_IDXMRK_INSERT : STR_IDXMRK_EDIT));
m_pDelBT->SetClickHdl(LINK(this,SwIndexMarkPane, DelHdl));
m_pPrevBT->SetClickHdl(LINK(this,SwIndexMarkPane, PrevHdl));
@@ -1115,7 +1115,7 @@ SwAuthorMarkPane::SwAuthorMarkPane(Dialog &rDialog, bool bNewDlg)
m_pFromDocContentRB->SetClickHdl(LINK(this,SwAuthorMarkPane, ChangeSourceHdl));
m_pEntryED->SetModifyHdl(LINK(this,SwAuthorMarkPane, EditModifyHdl));
- m_rDialog.SetText(SW_RESSTR(
+ m_rDialog.SetText(SwResId(
bNewEntry ? STR_AUTHMRK_INSERT : STR_AUTHMRK_EDIT));
m_pEntryED->Show(!bNewEntry);
@@ -1224,7 +1224,7 @@ IMPL_LINK_NOARG(SwAuthorMarkPane, InsertHdl, Button*, void)
bDifferent |= m_sFields[i] != pEntry->GetAuthorField((ToxAuthorityField)i);
if(bDifferent)
{
- ScopedVclPtrInstance< MessageDialog > aQuery(&m_rDialog, SW_RES(STR_QUERY_CHANGE_AUTH_ENTRY), VclMessageType::Question, VclButtonsType::YesNo);
+ ScopedVclPtrInstance< MessageDialog > aQuery(&m_rDialog, SwResId(STR_QUERY_CHANGE_AUTH_ENTRY), VclMessageType::Question, VclButtonsType::YesNo);
if(RET_YES != aQuery->Execute())
return;
}
@@ -1462,14 +1462,14 @@ SwCreateAuthEntryDlg_Impl::SwCreateAuthEntryDlg_Impl(vcl::Window* pParent,
pFixedTexts[nIndex]->set_grid_left_attach(0);
pFixedTexts[nIndex]->set_grid_top_attach(bLeft ? nLeftRow : nRightRow);
- pFixedTexts[nIndex]->SetText(SW_RES(STR_AUTH_FIELD_START + aCurInfo.nToxField));
+ pFixedTexts[nIndex]->SetText(SwResId(STR_AUTH_FIELD_START + aCurInfo.nToxField));
pFixedTexts[nIndex]->Show();
pEdits[nIndex] = nullptr;
if( AUTH_FIELD_AUTHORITY_TYPE == aCurInfo.nToxField )
{
pTypeListBox = VclPtr<ListBox>::Create(bLeft ? pLeft : pRight, WB_DROPDOWN|WB_BORDER|WB_VCENTER);
for(int j = 0; j < AUTH_TYPE_END; j++)
- pTypeListBox->InsertEntry(SW_RESSTR(STR_AUTH_TYPE_START + j));
+ pTypeListBox->InsertEntry(SwResId(STR_AUTH_TYPE_START + j));
if(!pFields[aCurInfo.nToxField].isEmpty())
{
pTypeListBox->SelectEntryPos(pFields[aCurInfo.nToxField].toInt32());
mmentsex&id=a185ea4ec12898574d52ebdf4a1017005745df7d'>clang-tidy modernize-use-emplace in sdNoel Grandin 2017-07-21loplugin:unusedfields in sdNoel Grandin 2017-07-21migrate to boost::gettextCaolán McNamara 2017-07-02loplugin:casttovoid: sdStephan Bergmann 2017-07-02PresenterCanvas::UpdateSpriteClip rSize parameter is unusedStephan Bergmann 2017-06-18remove unused osl/mutex.hxx includesJochen Nitschke 2017-05-09make loplugin constantparam smarter about string paramsNoel Grandin 2017-05-07break circular includeJochen Nitschke 2017-05-07revert OSL_ASSERT changesChris Sherlock 2017-05-07tdf#43157: convert sd module away from OSL_ASSERT to assertChris Sherlock 2017-05-04sd: oops, skipped one entry on every erase by incrementingMichael Stahl 2017-05-04sd: fix atexit crash in CanvasUpdateRequester::maRequesterMapMichael Stahl 2017-04-26remove sd bitmaps from .src filesCaolán McNamara 2017-04-26use strong_int for LanguageTypeNoel Grandin 2017-03-31tdf#82580 tools: rename Rectangle to tools::RectangleMiklos Vajna 2017-02-28new loplugin unoanyNoel Grandin 2017-02-21loplugin:subtlezeroinit: sdStephan Bergmann 2017-01-31more SAL_WARN_UNUSEDNoel Grandin 2017-01-26Remove dynamic exception specificationsStephan Bergmann 2017-01-19New loplugin:dynexcspec: Add @throws documentation, sdStephan Bergmann 2016-12-21ODR violation (base class must be the same across compilation units)Stephan Bergmann 2016-12-05loplugin:unnecessaryoverride (dtors) in sdStephan Bergmann 2016-11-11update vclwidget loplugin to find ref-dropping assigmentNoel Grandin 2016-10-28loplugin:expandablemethods in sdNoel Grandin