summaryrefslogtreecommitdiff
path: root/sw/source/ui/table
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-06-12 13:13:05 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-13 08:38:07 +0200
commit6694219526e4d759657aecc49483c518f3d573b1 (patch)
treedb19e3cc03f49c28062b51aabeccdd01528be359 /sw/source/ui/table
parentff53b7e475be213a5337e37ba9c8fb73259fb0ad (diff)
loplugin:unusedfields only-used-in-constructor in sw
Change-Id: I942279bdf2774d6c30deae2b2f35cd9edca07efd Reviewed-on: https://gerrit.libreoffice.org/55614 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/ui/table')
-rw-r--r--sw/source/ui/table/convert.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/ui/table/convert.cxx b/sw/source/ui/table/convert.cxx
index 0e140f0866f6..e399982fac24 100644
--- a/sw/source/ui/table/convert.cxx
+++ b/sw/source/ui/table/convert.cxx
@@ -106,7 +106,6 @@ SwConvertTableDlg::SwConvertTableDlg(SwView& rView, bool bToTable)
, m_xRepeatHeaderNF(m_xBuilder->weld_spin_button("repeatheadersb"))
, m_xDontSplitCB(m_xBuilder->weld_check_button("dontsplitcb"))
, m_xAutoFormatBtn(m_xBuilder->weld_button("autofmt"))
- , sConvertTextTable(SwResId(STR_CONVERT_TEXT_TABLE))
, pShell(&rView.GetWrtShell())
{
if (nSaveButtonState > -1)
@@ -133,7 +132,7 @@ SwConvertTableDlg::SwConvertTableDlg(SwView& rView, bool bToTable)
}
if( bToTable )
{
- m_xDialog->set_title(sConvertTextTable);
+ m_xDialog->set_title(SwResId(STR_CONVERT_TEXT_TABLE));
m_xAutoFormatBtn->connect_clicked(LINK(this, SwConvertTableDlg, AutoFormatHdl));
m_xAutoFormatBtn->show();
m_xKeepColumn->show();