diff options
author | Vicente Vendrell <viventa1@yahoo.es> | 2012-04-25 16:20:47 +0200 |
---|---|---|
committer | Jesús Corrius <jesus@softcatala.org> | 2012-04-25 16:22:34 +0200 |
commit | 83201a345f90061a88c0bc1f9ede952a539df822 (patch) | |
tree | 6686ee17673a614ecad336c57bcbb261b360acb5 | |
parent | 2f45e42a1bd4ff4c781020301cbbb28e8b152903 (diff) |
Removed usused method Dialog::Dialog(Window,ResId)
-rwxr-xr-x | unusedcode.easy | 1 | ||||
-rw-r--r-- | vcl/inc/vcl/dialog.hxx | 1 | ||||
-rw-r--r-- | vcl/source/window/dialog.cxx | 11 |
3 files changed, 0 insertions, 13 deletions
diff --git a/unusedcode.easy b/unusedcode.easy index e557846ed9aa..f063fabc98e1 100755 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -1,5 +1,4 @@ CertificateExtension_XmlSecImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char) -Dialog::Dialog(Window*, ResId const&) EditEngine::GetNextVisPortion(ParaPortion const*) const FmFieldWinMgr::GetChildWindowId() FmPropBrwMgr::GetChildWindowId() diff --git a/vcl/inc/vcl/dialog.hxx b/vcl/inc/vcl/dialog.hxx index 65a7696448cf..2d03af5aa5ff 100644 --- a/vcl/inc/vcl/dialog.hxx +++ b/vcl/inc/vcl/dialog.hxx @@ -78,7 +78,6 @@ protected: public: Dialog( Window* pParent, WinBits nStyle = WB_STDDIALOG ); - Dialog( Window* pParent, const ResId& rResId ); virtual ~Dialog(); virtual long Notify( NotifyEvent& rNEvt ); diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx index 1353c6c01031..598a723eadec 100644 --- a/vcl/source/window/dialog.cxx +++ b/vcl/source/window/dialog.cxx @@ -409,17 +409,6 @@ Dialog::Dialog( Window* pParent, WinBits nStyle ) : // ----------------------------------------------------------------------- -Dialog::Dialog( Window* pParent, const ResId& rResId ) : - SystemWindow( WINDOW_DIALOG ) -{ - ImplInitDialogData(); - rResId.SetRT( RSC_DIALOG ); - ImplInit( pParent, ImplInitRes( rResId ) ); - ImplLoadRes( rResId ); -} - -// ----------------------------------------------------------------------- - Dialog::~Dialog() { delete mpDialogImpl; |