diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-07-09 17:11:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-07-10 09:50:06 +0100 |
commit | 137e4bd885a913cb201d92dfc7815b2821986d49 (patch) | |
tree | a3a1e007ee2c294dc794f5a7d941936c4fcb7bab /sfx2/source/inc/versdlg.hxx | |
parent | c6de82163e990478aa6448cf5b6537bcca1b80b5 (diff) |
convert version comment dialog to .ui format
Change-Id: I7bbcc19062883932bf2e2fd68928f3f5624c4748
Diffstat (limited to 'sfx2/source/inc/versdlg.hxx')
-rw-r--r-- | sfx2/source/inc/versdlg.hxx | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/sfx2/source/inc/versdlg.hxx b/sfx2/source/inc/versdlg.hxx index a81e8eab6207..1853a3d864ed 100644 --- a/sfx2/source/inc/versdlg.hxx +++ b/sfx2/source/inc/versdlg.hxx @@ -74,21 +74,19 @@ public: class SfxViewVersionDialog_Impl : public SfxModalDialog { - FixedText aDateTimeText; - FixedText aSavedByText; - MultiLineEdit aEdit; - OKButton aOKButton; - CancelButton aCancelButton; - PushButton aCloseButton; - HelpButton aHelpButton; - SfxVersionInfo* pInfo; + FixedText* m_pDateTimeText; + FixedText* m_pSavedByText; + VclMultiLineEdit* m_pEdit; + OKButton* m_pOKButton; + CancelButton* m_pCancelButton; + CloseButton* m_pCloseButton; + SfxVersionInfo& m_rInfo; - DECL_LINK( ButtonHdl, Button* ); + DECL_LINK(ButtonHdl, Button*); public: - SfxViewVersionDialog_Impl( Window *pParent, - SfxVersionInfo& rInfo, sal_Bool bEdit ); - }; + SfxViewVersionDialog_Impl(Window *pParent, SfxVersionInfo& rInfo, bool bEdit); +}; #endif |