summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-10-21 11:09:41 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-21 13:23:02 +0200
commit1f7c5d2a55486bcbcd066111cea9b91ec348baf1 (patch)
tree2378812276d8bd4214eeac6336b4b30c4ae9012a /sfx2/source/dialog
parent3be8c4c2bb919d69a2812c76edbaeaa41d149edb (diff)
loplugin:expandablemethodds in include/sfx2
Change-Id: I1ec3ae33a71d154276e213a68c735476daa606b9
Diffstat (limited to 'sfx2/source/dialog')
-rw-r--r--sfx2/source/dialog/basedlgs.cxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx
index 2fdeef8d8f06..dd35973c024c 100644
--- a/sfx2/source/dialog/basedlgs.cxx
+++ b/sfx2/source/dialog/basedlgs.cxx
@@ -144,18 +144,13 @@ void SfxModalDialog::GetDialogData_Impl()
}
}
-void SfxModalDialog::init()
-{
- GetDialogData_Impl();
-}
-
SfxModalDialog::SfxModalDialog(vcl::Window *pParent, const OUString& rID, const OUString& rUIXMLDescription )
: ModalDialog(pParent, rID, rUIXMLDescription),
nUniqId(0), //todo: remove this member when the ResId using ctor is removed
pInputSet(nullptr),
pOutputSet(nullptr)
{
- init();
+ GetDialogData_Impl();
}
SfxModalDialog::~SfxModalDialog()