summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorVicente Vendrell <viventa1@yahoo.es>2012-04-25 16:20:47 +0200
committerJesús Corrius <jesus@softcatala.org>2012-04-25 16:22:34 +0200
commit83201a345f90061a88c0bc1f9ede952a539df822 (patch)
tree6686ee17673a614ecad336c57bcbb261b360acb5 /vcl
parent2f45e42a1bd4ff4c781020301cbbb28e8b152903 (diff)
Removed usused method Dialog::Dialog(Window,ResId)
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/vcl/dialog.hxx1
-rw-r--r--vcl/source/window/dialog.cxx11
2 files changed, 0 insertions, 12 deletions
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;