diff options
author | Peter Burow <pb@openoffice.org> | 2001-06-28 12:33:30 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2001-06-28 12:33:30 +0000 |
commit | a38271cbe2a0bb94e984c4ed40c14d91199d9ce1 (patch) | |
tree | cbf8730abf64c4e3a3fb80e9220316c9aab896ac /sfx2/inc | |
parent | 61d4bf502197b9bc4648923d7ee5499fe80cae63 (diff) |
fix: #88882# FixedLine instead of GroupBox
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/dinfedt.hxx | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/sfx2/inc/dinfedt.hxx b/sfx2/inc/dinfedt.hxx index 514462f5a681..f75b2c6acbb7 100644 --- a/sfx2/inc/dinfedt.hxx +++ b/sfx2/inc/dinfedt.hxx @@ -2,9 +2,9 @@ * * $RCSfile: dinfedt.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:52:22 $ + * last change: $Author: pb $ $Date: 2001-06-28 13:33:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -63,17 +63,17 @@ // include --------------------------------------------------------------- -#ifndef _SV_EDIT_HXX //autogen wg. Edit -#include <vcl/edit.hxx> +#ifndef _SV_BUTTON_HXX +#include <vcl/button.hxx> #endif -#ifndef _SV_DIALOG_HXX //autogen wg. ModalDialog +#ifndef _SV_DIALOG_HXX #include <vcl/dialog.hxx> #endif -#ifndef _SV_GROUP_HXX //autogen wg. GroupBox -#include <vcl/group.hxx> +#ifndef _SV_EDIT_HXX +#include <vcl/edit.hxx> #endif -#ifndef _SV_BUTTON_HXX //autogen wg. OKButton -#include <vcl/button.hxx> +#ifndef _SV_FIXED_HXX +#include <vcl/fixed.hxx> #endif // class InfoEdit_Impl --------------------------------------------------- @@ -92,11 +92,11 @@ public: class SfxDocInfoEditDlg : public ModalDialog { private: + FixedLine aInfoFL; InfoEdit_Impl aInfo1ED; InfoEdit_Impl aInfo2ED; InfoEdit_Impl aInfo3ED; InfoEdit_Impl aInfo4ED; - GroupBox aInfoGB; OKButton aOkBT; CancelButton aCancelBT; HelpButton aHelpBtn; @@ -115,6 +115,5 @@ public: String GetText4() const { return aInfo4ED.GetText(); } }; - #endif |