diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-12-18 23:05:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-12-19 15:23:15 +0000 |
commit | da5390f5613c2daa18f0f30760e47e7a102694df (patch) | |
tree | a984868a709f1ec19cc9d99dc7e01f3b1f41d961 /sfx2/inc | |
parent | 243587069c20e062320b3698a08966613ece4bbb (diff) |
split out internet info page and convert to .ui
Change-Id: I1aa0dea1e0867b4cf6c4ca099d8c0281d400b24c
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/sfx2/dinfdlg.hxx | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/sfx2/inc/sfx2/dinfdlg.hxx b/sfx2/inc/sfx2/dinfdlg.hxx index 09b7a1fcdad7..abb3e495eae5 100644 --- a/sfx2/inc/sfx2/dinfdlg.hxx +++ b/sfx2/inc/sfx2/dinfdlg.hxx @@ -240,22 +240,24 @@ namespace sfx2 class SfxInternetPage : public SfxTabPage { private: - RadioButton aRBNoAutoUpdate; - RadioButton aRBReloadUpdate; - RadioButton aRBForwardUpdate; - - FixedText aFTEvery; - NumericField aNFReload; - FixedText aFTReloadSeconds; - - FixedText aFTAfter; - NumericField aNFAfter; - FixedText aFTAfterSeconds; - FixedText aFTURL; - Edit aEDForwardURL; - PushButton aPBBrowseURL; - FixedText aFTFrame; - ComboBox aCBFrame; + VclContainer* m_pContainer; + + RadioButton* m_pRBNoAutoUpdate; + RadioButton* m_pRBReloadUpdate; + RadioButton* m_pRBForwardUpdate; + + FixedText* m_pFTEvery; + NumericField* m_pNFReload; + FixedText* m_pFTReloadSeconds; + + FixedText* m_pFTAfter; + NumericField* m_pNFAfter; + FixedText* m_pFTAfterSeconds; + FixedText* m_pFTURL; + Edit* m_pEDForwardURL; + PushButton* m_pPBBrowseURL; + FixedText* m_pFTFrame; + ComboBox* m_pCBFrame; String aForwardErrorMessg; String aBaseURL; |