diff options
author | Peter Burow <pb@openoffice.org> | 2001-06-28 12:44:05 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2001-06-28 12:44:05 +0000 |
commit | 5ec9c78d29def1661105af3859f551788940f3d6 (patch) | |
tree | 9228d906f9286ee2d172f738d2d3ded80ddeddab /sfx2/source/inc | |
parent | 5abb6088cb6bfc919a7f122153ce12073bd6d58c (diff) |
fix: #88882# FixedLine instead of GroupBox
Diffstat (limited to 'sfx2/source/inc')
-rw-r--r-- | sfx2/source/inc/nfltdlg.hxx | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/sfx2/source/inc/nfltdlg.hxx b/sfx2/source/inc/nfltdlg.hxx index 66f8fb0e7f37..5aadf2412958 100644 --- a/sfx2/source/inc/nfltdlg.hxx +++ b/sfx2/source/inc/nfltdlg.hxx @@ -2,9 +2,9 @@ * * $RCSfile: nfltdlg.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:52:34 $ + * last change: $Author: pb $ $Date: 2001-06-28 13:40:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -62,37 +62,36 @@ #define _SFXNFLTDLG_HXX -#ifndef _DIALOG_HXX //autogen +#ifndef _SV_DIALOG_HXX //autogen #include <vcl/dialog.hxx> #endif -#ifndef _LSTBOX_HXX //autogen +#ifndef _SV_LSTBOX_HXX //autogen #include <vcl/lstbox.hxx> #endif -#ifndef _BUTTON_HXX //autogen +#ifndef _SV_BUTTON_HXX //autogen #include <vcl/button.hxx> #endif -#ifndef _FIXED_HXX //autogen +#ifndef _SV_FIXED_HXX //autogen #include <vcl/fixed.hxx> #endif -#ifndef _GROUP_HXX //autogen -#include <vcl/group.hxx> -#endif class SfxFilterMatcher; class SfxMedium; class SfxFilterDialog : public ModalDialog { private: - GroupBox aGroupType; - FixedText aMIMEType; - FixedText aExtension; - ListBox aListbox; - GroupBox aGroupFrm; - OKButton aOkBtn; - CancelButton aCancelBtn; - HelpButton aHelpBtn; - String aDefFilter; + FixedLine aMimeTypeFL; + FixedText aMIMEType; + FixedText aExtension; + FixedLine aFilterFL; + ListBox aListbox; + OKButton aOkBtn; + CancelButton aCancelBtn; + HelpButton aHelpBtn; + + String aDefFilter; const SfxFilterMatcher& rMatcher; + DECL_LINK( OkHdl, Control * ); public: @@ -104,5 +103,5 @@ public: String GetSelectEntry() const; }; - #endif + |