diff options
-rw-r--r-- | sc/source/ui/inc/groupdlg.hxx | 10 | ||||
-rw-r--r-- | sc/source/ui/miscdlgs/groupdlg.cxx | 8 | ||||
-rw-r--r-- | sc/source/ui/src/miscdlgs.src | 14 |
3 files changed, 16 insertions, 16 deletions
diff --git a/sc/source/ui/inc/groupdlg.hxx b/sc/source/ui/inc/groupdlg.hxx index c259bc4708f1..e4ebbecad922 100644 --- a/sc/source/ui/inc/groupdlg.hxx +++ b/sc/source/ui/inc/groupdlg.hxx @@ -2,9 +2,9 @@ * * $RCSfile: groupdlg.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:44:59 $ + * last change: $Author: dr $ $Date: 2001-05-25 10:45:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -71,8 +71,8 @@ #include <vcl/imagebtn.hxx> #endif -#ifndef _SV_GROUP_HXX //autogen -#include <vcl/group.hxx> +#ifndef _SV_FIXED_HXX //autogen +#include <vcl/fixed.hxx> #endif //------------------------------------------------------------------------ @@ -90,9 +90,9 @@ public: BOOL GetColsChecked() const; private: + FixedLine aFlFrame; RadioButton aBtnRows; RadioButton aBtnCols; - GroupBox aGbFrame; OKButton aBtnOk; CancelButton aBtnCancel; HelpButton aBtnHelp; diff --git a/sc/source/ui/miscdlgs/groupdlg.cxx b/sc/source/ui/miscdlgs/groupdlg.cxx index 82042c386c00..e65f361ed7d4 100644 --- a/sc/source/ui/miscdlgs/groupdlg.cxx +++ b/sc/source/ui/miscdlgs/groupdlg.cxx @@ -2,9 +2,9 @@ * * $RCSfile: groupdlg.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:45:02 $ + * last change: $Author: dr $ $Date: 2001-05-25 10:45:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -82,12 +82,12 @@ ScGroupDlg::ScGroupDlg( Window* pParent, // aBtnRows ( this, ScResId( BTN_GROUP_ROWS ) ), aBtnCols ( this, ScResId( BTN_GROUP_COLS ) ), - aGbFrame ( this, ScResId( GB_FRAME ) ), + aFlFrame ( this, ScResId( FL_FRAME ) ), aBtnOk ( this, ScResId( BTN_OK ) ), aBtnCancel ( this, ScResId( BTN_CANCEL ) ), aBtnHelp ( this, ScResId( BTN_HELP ) ) { - aGbFrame.SetText( String( ScResId(bUngroup ? STR_UNGROUP : STR_GROUP) ) ); + aFlFrame.SetText( String( ScResId(bUngroup ? STR_UNGROUP : STR_GROUP) ) ); if ( bRows ) aBtnRows.Check(); diff --git a/sc/source/ui/src/miscdlgs.src b/sc/source/ui/src/miscdlgs.src index 53679b25aed3..51315bea1bf7 100644 --- a/sc/source/ui/src/miscdlgs.src +++ b/sc/source/ui/src/miscdlgs.src @@ -2,9 +2,9 @@ * * $RCSfile: miscdlgs.src,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: dr $ $Date: 2001-05-23 10:48:29 $ + * last change: $Author: dr $ $Date: 2001-05-25 10:43:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -3169,7 +3169,7 @@ ModalDialog RID_SCDLG_GROUP // HelpID, weil die generierten aus den Ableitungen nicht in die hid.lst kommen HelpId = HID_SC_GROUP_ROWS ; Pos = MAP_APPFONT ( 12 , 14 ) ; - Size = MAP_APPFONT ( 40 , 10 ) ; + Size = MAP_APPFONT ( 71 , 10 ) ; TXT_ROWS TabStop = TRUE ; }; @@ -3177,15 +3177,15 @@ ModalDialog RID_SCDLG_GROUP { // HelpID, weil die generierten aus den Ableitungen nicht in die hid.lst kommen HelpId = HID_SC_GROUP_COLS ; - Pos = MAP_APPFONT ( 12 , 27 ) ; - Size = MAP_APPFONT ( 40 , 10 ) ; + Pos = MAP_APPFONT ( 12 , 28 ) ; + Size = MAP_APPFONT ( 71 , 10 ) ; TXT_COLS TabStop = TRUE ; }; - GroupBox GB_FRAME + FixedLine FL_FRAME { Pos = MAP_APPFONT ( 6 , 3 ) ; - Size = MAP_APPFONT ( 80 , 40 ) ; + Size = MAP_APPFONT ( 80 , 8 ) ; Text = "Aktivieren f�r" ; }; String STR_GROUP |