summaryrefslogtreecommitdiff
path: root/vcl/inc/unx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-10-20 20:33:50 +0200
committerJulien Nabet <serval2412@yahoo.fr>2017-10-21 08:17:16 +0200
commit3dce7bd77c56e61cd9457b03e8cf4137a7630eb9 (patch)
tree5f3958f8cd96d91ccc5513bf1b9db65d86e7b560 /vcl/inc/unx
parent1c680d763e770250b8e1b0e63e62a4f5ecda3b74 (diff)
Replace lists by vectors in gtkgdi (vcl)
Change-Id: I328fd67c24607173ead855179c44f7f08baf9e0b Reviewed-on: https://gerrit.libreoffice.org/43620 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/inc/unx')
-rw-r--r--vcl/inc/unx/gtk/gtkgdi.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/vcl/inc/unx/gtk/gtkgdi.hxx b/vcl/inc/unx/gtk/gtkgdi.hxx
index 345f7282fc1e..f06fa09434ad 100644
--- a/vcl/inc/unx/gtk/gtkgdi.hxx
+++ b/vcl/inc/unx/gtk/gtkgdi.hxx
@@ -300,50 +300,50 @@ protected:
ControlType nType,
ControlPart nPart,
const tools::Rectangle& aCtrlRect,
- const std::list< tools::Rectangle >& aClip,
+ const std::vector< tools::Rectangle >& aClip,
ControlState nState,
const ImplControlValue& aValue,
ControlCacheKey& rControlCacheKey);
bool NWPaintGTKArrow( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState, const ImplControlValue& aValue );
bool NWPaintGTKListHeader( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKFixedLine( GdkDrawable* gdkDrawable, ControlPart nPart,
const tools::Rectangle& rControlRectangle );
bool NWPaintGTKFrame( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
const ImplControlValue& aValue );
bool NWPaintGTKWindowBackground( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList );
+ const std::vector< tools::Rectangle >& rClipList );
bool NWPaintGTKButtonReal( GtkWidget* button, GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKButton( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKRadio( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState, const ImplControlValue& aValue );
bool NWPaintGTKCheck( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState, const ImplControlValue& aValue );
bool NWPaintGTKScrollbar( ControlPart nPart,
const tools::Rectangle& rControlRectangle,
ControlState nState, const ImplControlValue& aValue );
bool NWPaintGTKEditBox( GdkDrawable* gdkDrawable, ControlType nType,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKSpinBox(ControlType nType, ControlPart nPart,
const tools::Rectangle& rControlRectangle,
@@ -351,31 +351,31 @@ protected:
ControlCacheKey& rControlCacheKey);
bool NWPaintGTKComboBox( GdkDrawable* gdkDrawable, ControlType nType, ControlPart nPart,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKTabItem( ControlType nType,
const tools::Rectangle& rControlRectangle,
ControlState nState, const ImplControlValue& aValue );
bool NWPaintGTKListBox( GdkDrawable* gdkDrawable, ControlPart nPart,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKToolbar( GdkDrawable* gdkDrawable, ControlPart nPart,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState, const ImplControlValue& aValue );
bool NWPaintGTKMenubar( GdkDrawable* gdkDrawable, ControlPart nPart,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKPopupMenu( GdkDrawable* gdkDrawable, ControlPart nPart,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList,
+ const std::vector< tools::Rectangle >& rClipList,
ControlState nState );
bool NWPaintGTKTooltip( GdkDrawable* gdkDrawable,
const tools::Rectangle& rControlRectangle,
- const std::list< tools::Rectangle >& rClipList );
+ const std::vector< tools::Rectangle >& rClipList );
bool NWPaintGTKProgress(
const tools::Rectangle& rControlRectangle,
const ImplControlValue& aValue );