summaryrefslogtreecommitdiffstats
path: root/basctl/source/basicide/moduldlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-14 13:41:38 +0200
committerNoel Grandin <noel@peralex.com>2016-03-15 08:27:25 +0200
commitb47cb646ff2a62fcd3fac0e453a7261bbaefbcb7 (patch)
tree49a2dc78e998baa77212776d7d94fb8d72dc0f00 /basctl/source/basicide/moduldlg.cxx
parenttdf#96099 fix trival typedefs, Path to std::vector<OUString> (diff)
downloadcore-b47cb646ff2a62fcd3fac0e453a7261bbaefbcb7.tar.gz
core-b47cb646ff2a62fcd3fac0e453a7261bbaefbcb7.zip
loplugin:constantparam
Change-Id: I270e068b3c83e966e741b0a072fecce9d92d53f5
Diffstat (limited to 'basctl/source/basicide/moduldlg.cxx')
-rw-r--r--basctl/source/basicide/moduldlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/moduldlg.cxx b/basctl/source/basicide/moduldlg.cxx
index 1285300f9ac5..c63e885c85de 100644
--- a/basctl/source/basicide/moduldlg.cxx
+++ b/basctl/source/basicide/moduldlg.cxx
@@ -739,7 +739,7 @@ IMPL_LINK_TYPED( ObjectPage, ButtonHdl, Button *, pButton, void )
pDispatcher->Execute( SID_BASICIDE_LIBSELECTED, SfxCallMode::ASYNCHRON, &aDocItem, &aLibNameItem, 0 );
}
}
- EndTabDialog( 1 );
+ EndTabDialog();
}
else if (pButton == m_pNewModButton)
NewModule();
@@ -919,11 +919,11 @@ void ObjectPage::DeleteCurrent()
}
-void ObjectPage::EndTabDialog( sal_uInt16 nRet )
+void ObjectPage::EndTabDialog()
{
DBG_ASSERT( pTabDlg, "TabDlg nicht gesetzt!" );
if ( pTabDlg )
- pTabDlg->EndDialog( nRet );
+ pTabDlg->EndDialog( 1 );
}
LibDialog::LibDialog( vcl::Window* pParent )