Kaydet (Commit) 29d5cb9a authored tarafından Caolán McNamara's avatar Caolán McNamara

SwMailConfigDlg can now be converted to SfxSingleTabDialog

Change-Id: Ic9895e027be8b5406dda7756a19127bd4edee63d
üst 9f71d4e4
...@@ -409,15 +409,11 @@ void SwTestAccountSettingsDialog::Test() ...@@ -409,15 +409,11 @@ void SwTestAccountSettingsDialog::Test()
} }
} }
SwMailConfigDlg::SwMailConfigDlg(Window* pParent, SfxItemSet& rSet ) : SwMailConfigDlg::SwMailConfigDlg(Window* pParent, SfxItemSet& rSet)
SfxNoLayoutSingleTabDialog(pParent, rSet, 0) : SfxSingleTabDialog(pParent, rSet)
{ {
// create TabPage // create TabPage
SetTabPage(SwMailConfigPage::Create( this, rSet )); setTabPage(SwMailConfigPage::Create(get_content_area(), rSet));
}
SwMailConfigDlg::~SwMailConfigDlg()
{
} }
SwAuthenticationSettingsDialog::SwAuthenticationSettingsDialog( SwAuthenticationSettingsDialog::SwAuthenticationSettingsDialog(
......
...@@ -67,12 +67,10 @@ public: ...@@ -67,12 +67,10 @@ public:
}; };
class SwMailConfigDlg : public SfxNoLayoutSingleTabDialog class SwMailConfigDlg : public SfxSingleTabDialog
{ {
public: public:
SwMailConfigDlg(Window* pParent, SfxItemSet& rSet);
SwMailConfigDlg( Window* pParent, SfxItemSet& rSet );
~SwMailConfigDlg();
}; };
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment