diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-12-16 11:08:29 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-12-16 11:10:55 +0000 |
commit | 0136616a5a005cc2237f020d46718bdb78f33c2b (patch) | |
tree | 32f67b8068b88b7613818055f1c71f9b0ce0ca0b /sfx2/source/appl/newhelp.hxx | |
parent | e52f14efaa53b496599b51fb064a933183731fca (diff) |
convert help bookmark dialog to .ui
Change-Id: I7831bc63f66ab7fe30f5648efc2f733c6bd90d0e
Diffstat (limited to 'sfx2/source/appl/newhelp.hxx')
-rw-r--r-- | sfx2/source/appl/newhelp.hxx | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/sfx2/source/appl/newhelp.hxx b/sfx2/source/appl/newhelp.hxx index e62af43004f8..0ebbcf65d645 100644 --- a/sfx2/source/appl/newhelp.hxx +++ b/sfx2/source/appl/newhelp.hxx @@ -582,18 +582,12 @@ public: class SfxAddHelpBookmarkDialog_Impl : public ModalDialog { private: - FixedText aTitleFT; - Edit aTitleED; - OKButton aOKBtn; - CancelButton aEscBtn; - HelpButton aHelpBtn; - + Edit* m_pTitleED; public: SfxAddHelpBookmarkDialog_Impl( Window* pParent, sal_Bool bRename = sal_True ); - ~SfxAddHelpBookmarkDialog_Impl(); - void SetTitle( const OUString& rTitle ); - inline OUString GetTitle() const { return aTitleED.GetText(); } + void SetTitle( const OUString& rTitle ); + OUString GetTitle() const { return m_pTitleED->GetText(); } }; /// Appends ?Language=xy&System=abc to the help URL in rURL |