Pack the bools.

Change-Id: I71bf94a87f8d7092b472e7a8eb58045a82749c29
This commit is contained in:
Jan Holesovsky
2012-05-11 14:18:23 +02:00
parent 9d2b1ec8e8
commit edec6d134a

View File

@@ -300,30 +300,30 @@ struct ImplSVHelpData
struct ImplSVNWFData struct ImplSVNWFData
{ {
bool mbMenuBarDockingAreaCommonBG; // e.g. WinXP default theme int mnStatusBarLowerRightOffset; // amount in pixel to avoid in the lower righthand corner
bool mbDockingAreaSeparateTB; // individual toolbar backgrounds int mnMenuFormatExtraBorder; // inner popup menu border
// instead of one for docking area ::Color maMenuBarHighlightTextColor; // override higlight text color
bool mbToolboxDropDownSeparate; // two adjacent buttons for // in menubar if not transparent
// toolbox dropdown buttons bool mbMenuBarDockingAreaCommonBG:1; // e.g. WinXP default theme
int mnMenuFormatExtraBorder; // inner popup menu border bool mbDockingAreaSeparateTB:1; // individual toolbar backgrounds
bool mbFlatMenu; // no popup 3D border // instead of one for docking area
::Color maMenuBarHighlightTextColor; // override higlight text color bool mbToolboxDropDownSeparate:1; // two adjacent buttons for
// in menubar if not transparent // toolbox dropdown buttons
bool mbOpenMenuOnF10; // on gnome the first menu opens on F10 bool mbFlatMenu:1; // no popup 3D border
bool mbNoFocusRects; // on Aqua focus rects are not used bool mbOpenMenuOnF10:1; // on gnome the first menu opens on F10
bool mbNoBoldTabFocus; // on Aqua and Gnome the focused tab has not bold text bool mbNoFocusRects:1; // on Aqua focus rects are not used
bool mbCenteredTabs; // on Aqua, tabs are centered bool mbNoBoldTabFocus:1; // on Aqua and Gnome the focused tab has not bold text
bool mbNoActiveTabTextRaise; // on Aqua the text for the selected tab bool mbCenteredTabs:1; // on Aqua, tabs are centered
// should not "jump up" a pixel bool mbNoActiveTabTextRaise:1; // on Aqua the text for the selected tab
bool mbProgressNeedsErase; // set true for platforms that should draw the // should not "jump up" a pixel
// window background before drawing the native bool mbProgressNeedsErase:1; // set true for platforms that should draw the
// progress bar // window background before drawing the native
bool mbCheckBoxNeedsErase; // set true for platforms that should draw the // progress bar
// window background before drawing the native bool mbCheckBoxNeedsErase:1; // set true for platforms that should draw the
// checkbox // window background before drawing the native
bool mbScrollbarJumpPage; // true for "jump to here" behavior // checkbox
int mnStatusBarLowerRightOffset; // amount in pixel to avoid in the lower righthand corner bool mbScrollbarJumpPage:1; // true for "jump to here" behavior
bool mbCanDrawWidgetAnySize; // set to true currently on gtk bool mbCanDrawWidgetAnySize:1; // set to true currently on gtk
}; };