diff options
author | Palenik Mihály <palenik.mihaly@gmail.com> | 2014-08-14 15:39:05 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-08-14 10:24:14 -0500 |
commit | 3953eb3d83f4bb2f388eb1853f1f4976b150bab1 (patch) | |
tree | 17600495178a2406f8f73beca0f1da1d54ae5ffc /extensions/source/dbpilots/commonpagesdbp.hxx | |
parent | aa3babb42fa88840706f5b487ca0e88552cd8f83 (diff) |
Convert RID_PAGE_OPTION_DBFIELD tabpage to .ui
Change-Id: I5ab4c42cf5467254423396ce4f56390fc2fb5276
Reviewed-on: https://gerrit.libreoffice.org/10920
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions/source/dbpilots/commonpagesdbp.hxx')
-rw-r--r-- | extensions/source/dbpilots/commonpagesdbp.hxx | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/extensions/source/dbpilots/commonpagesdbp.hxx b/extensions/source/dbpilots/commonpagesdbp.hxx index 09ccc77e5cd6..d8da4185c5ce 100644 --- a/extensions/source/dbpilots/commonpagesdbp.hxx +++ b/extensions/source/dbpilots/commonpagesdbp.hxx @@ -106,18 +106,16 @@ namespace dbp class ODBFieldPage : public OMaybeListSelectionPage { protected: - FixedLine m_aFrame; - FixedText m_aDescription; - FixedText m_aQuestion; - RadioButton m_aStoreYes; - RadioButton m_aStoreNo; - ListBox m_aStoreWhere; + FixedText* m_pDescription; + RadioButton* m_pStoreYes; + RadioButton* m_pStoreNo; + ListBox* m_pStoreWhere; public: ODBFieldPage( OControlWizard* _pParent ); protected: - void setDescriptionText(const OUString& _rDesc) { m_aDescription.SetText(_rDesc); } + void setDescriptionText(const OUString& _rDesc) { m_pDescription->SetText(_rDesc); } // OWizardPage overridables virtual void initializePage() SAL_OVERRIDE; |