diff options
author | Szymon Kłos <eszkadev@gmail.com> | 2014-07-27 13:56:58 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-07-28 12:34:26 +0000 |
commit | 03fe3215e35d07319eac4a0e7a8d6e5563244492 (patch) | |
tree | 5b2f163d39c08998ce504fe87fddb9292c86d97a /dbaccess/source/ui/dlg/ConnectionHelper.hxx | |
parent | 8a406391b1af4bd4ae1b73806b80e11a58340351 (diff) |
PAGE_DBWIZARD_TEXT, PAGE_TEXT, DLG_TEXT_CONNECTION_SETTINGS conversion to .ui
Change-Id: Iea5105cc33b436e9c0728df799b1ceb63f20e46e
Reviewed-on: https://gerrit.libreoffice.org/10579
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'dbaccess/source/ui/dlg/ConnectionHelper.hxx')
-rw-r--r-- | dbaccess/source/ui/dlg/ConnectionHelper.hxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.hxx b/dbaccess/source/ui/dlg/ConnectionHelper.hxx index 22ad7957bcfc..95a222f10a37 100644 --- a/dbaccess/source/ui/dlg/ConnectionHelper.hxx +++ b/dbaccess/source/ui/dlg/ConnectionHelper.hxx @@ -41,11 +41,12 @@ namespace dbaui public: OConnectionHelper( Window* pParent, const ResId& _rId, const SfxItemSet& _rCoreAttrs); + OConnectionHelper( Window* pParent, const OString& _rId, const OUString& _rUIXMLDescription, const SfxItemSet& _rCoreAttrs); virtual ~OConnectionHelper(); - FixedText m_aFT_Connection; - OConnectionURLEdit m_aConnectionURL; - PushButton m_aPB_Connection; - PushButton m_aPB_CreateDB; + FixedText *m_pFT_Connection; + OConnectionURLEdit *m_pConnectionURL; + PushButton *m_pPB_Connection; + PushButton *m_pPB_CreateDB; OUString m_eType; // the type can't be changed in this class, so we hold it as member. public: @@ -95,6 +96,7 @@ namespace dbaui OUString impl_getURL( bool _bPrefix ) const; void impl_setURL( const OUString& _rURL, bool _bPrefix ); void implUpdateURLDependentStates() const; + bool m_bDelete; }; } // namespace dbaui |