mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 10:39:18 +02:00
Qt,Qt5: fixed range check error with fpc trunk. Patch by CudaText man. issue #36238
git-svn-id: trunk@62453 -
This commit is contained in:
parent
03d28dad0f
commit
ae474d63cb
@ -10648,7 +10648,8 @@ const
|
||||
|
||||
type
|
||||
QStyleControlElement = ( //QStyle::ControlElement (2)
|
||||
QStyleCE_PushButton,
|
||||
QStyleCE_CustomBase = LongInt($f0000000),
|
||||
QStyleCE_PushButton = 0,
|
||||
QStyleCE_PushButtonBevel,
|
||||
QStyleCE_PushButtonLabel,
|
||||
QStyleCE_CheckBox,
|
||||
@ -10695,11 +10696,12 @@ type
|
||||
QStyleCE_HeaderEmptyArea,
|
||||
QStyleCE_ColumnViewGrip,
|
||||
QStyleCE_ItemViewItem,
|
||||
QStyleCE_ShapedFrame,
|
||||
QStyleCE_CustomBase = $f0000000 );
|
||||
QStyleCE_ShapedFrame
|
||||
);
|
||||
|
||||
QStyleComplexControl = ( //QStyle::ComplexControl (2)
|
||||
QStyleCC_SpinBox,
|
||||
QStyleCC_CustomBase = LongInt($f0000000),
|
||||
QStyleCC_SpinBox = 0,
|
||||
QStyleCC_ComboBox,
|
||||
QStyleCC_ScrollBar,
|
||||
QStyleCC_Slider,
|
||||
@ -10708,8 +10710,8 @@ type
|
||||
QStyleCC_Q3ListView,
|
||||
QStyleCC_Dial,
|
||||
QStyleCC_GroupBox,
|
||||
QStyleCC_MdiControls,
|
||||
QStyleCC_CustomBase = $f0000000 );
|
||||
QStyleCC_MdiControls
|
||||
);
|
||||
|
||||
type
|
||||
QStyleSubControl = cardinal; // QStyle::SubControl
|
||||
@ -10764,7 +10766,8 @@ const
|
||||
|
||||
type
|
||||
QStyleContentsType = ( //QStyle::ContentsType (2)
|
||||
QStyleCT_PushButton,
|
||||
QStyleCT_CustomBase = LongInt($f0000000),
|
||||
QStyleCT_PushButton = 0,
|
||||
QStyleCT_CheckBox,
|
||||
QStyleCT_RadioButton,
|
||||
QStyleCT_ToolButton,
|
||||
@ -10788,11 +10791,12 @@ type
|
||||
QStyleCT_HeaderSection,
|
||||
QStyleCT_GroupBox,
|
||||
QStyleCT_MdiControls,
|
||||
QStyleCT_ItemViewItem,
|
||||
QStyleCT_CustomBase = $f0000000 );
|
||||
QStyleCT_ItemViewItem
|
||||
);
|
||||
|
||||
QStyleStandardPixmap = ( //QStyle::StandardPixmap (2)
|
||||
QStyleSP_TitleBarMenuButton,
|
||||
QStyleSP_CustomBase = LongInt($f0000000),
|
||||
QStyleSP_TitleBarMenuButton = 0,
|
||||
QStyleSP_TitleBarMinButton,
|
||||
QStyleSP_TitleBarMaxButton,
|
||||
QStyleSP_TitleBarCloseButton,
|
||||
@ -10860,8 +10864,8 @@ type
|
||||
QStyleSP_MediaSeekForward,
|
||||
QStyleSP_MediaSeekBackward,
|
||||
QStyleSP_MediaVolume,
|
||||
QStyleSP_MediaVolumeMuted,
|
||||
QStyleSP_CustomBase = $f0000000 );
|
||||
QStyleSP_MediaVolumeMuted
|
||||
);
|
||||
|
||||
type
|
||||
QStylePrimitiveElement = cardinal; // QStyle::PrimitiveElement (4)
|
||||
|
@ -12467,7 +12467,8 @@ const
|
||||
|
||||
type
|
||||
QStyleControlElement = ( //QStyle::ControlElement (2)
|
||||
QStyleCE_PushButton,
|
||||
QStyleCE_CustomBase = LongInt($f0000000),
|
||||
QStyleCE_PushButton = 0,
|
||||
QStyleCE_PushButtonBevel,
|
||||
QStyleCE_PushButtonLabel,
|
||||
QStyleCE_CheckBox,
|
||||
@ -12513,11 +12514,12 @@ type
|
||||
QStyleCE_HeaderEmptyArea,
|
||||
QStyleCE_ColumnViewGrip,
|
||||
QStyleCE_ItemViewItem,
|
||||
QStyleCE_ShapedFrame,
|
||||
QStyleCE_CustomBase = $f0000000 );
|
||||
QStyleCE_ShapedFrame
|
||||
);
|
||||
|
||||
QStyleComplexControl = ( //QStyle::ComplexControl (2)
|
||||
QStyleCC_SpinBox,
|
||||
QStyleCC_CustomBase = LongInt($f0000000),
|
||||
QStyleCC_SpinBox = 0,
|
||||
QStyleCC_ComboBox,
|
||||
QStyleCC_ScrollBar,
|
||||
QStyleCC_Slider,
|
||||
@ -12525,8 +12527,8 @@ type
|
||||
QStyleCC_TitleBar,
|
||||
QStyleCC_Dial,
|
||||
QStyleCC_GroupBox,
|
||||
QStyleCC_MdiControls,
|
||||
QStyleCC_CustomBase = $f0000000 );
|
||||
QStyleCC_MdiControls
|
||||
);
|
||||
|
||||
type
|
||||
QStyleSubControl = cardinal; // QStyle::SubControl
|
||||
@ -12579,7 +12581,8 @@ const
|
||||
|
||||
type
|
||||
QStyleContentsType = ( //QStyle::ContentsType (2)
|
||||
QStyleCT_PushButton,
|
||||
QStyleCT_CustomBase = LongInt($f0000000),
|
||||
QStyleCT_PushButton = 0,
|
||||
QStyleCT_CheckBox,
|
||||
QStyleCT_RadioButton,
|
||||
QStyleCT_ToolButton,
|
||||
@ -12601,11 +12604,12 @@ type
|
||||
QStyleCT_HeaderSection,
|
||||
QStyleCT_GroupBox,
|
||||
QStyleCT_MdiControls,
|
||||
QStyleCT_ItemViewItem,
|
||||
QStyleCT_CustomBase = $f0000000 );
|
||||
QStyleCT_ItemViewItem
|
||||
);
|
||||
|
||||
QStyleStandardPixmap = ( //QStyle::StandardPixmap (2)
|
||||
QStyleSP_TitleBarMenuButton,
|
||||
QStyleSP_CustomBase = LongInt($f0000000),
|
||||
QStyleSP_TitleBarMenuButton = 0,
|
||||
QStyleSP_TitleBarMinButton,
|
||||
QStyleSP_TitleBarMaxButton,
|
||||
QStyleSP_TitleBarCloseButton,
|
||||
@ -12674,8 +12678,8 @@ type
|
||||
QStyleSP_MediaSeekForward,
|
||||
QStyleSP_MediaSeekBackward,
|
||||
QStyleSP_MediaVolume,
|
||||
QStyleSP_MediaVolumeMuted,
|
||||
QStyleSP_CustomBase = $f0000000 );
|
||||
QStyleSP_MediaVolumeMuted
|
||||
);
|
||||
|
||||
type
|
||||
QStylePrimitiveElement = cardinal; // QStyle::PrimitiveElement (4)
|
||||
|
Loading…
Reference in New Issue
Block a user