]> Dogcows Code - chaz/openbox/blobdiff - otk/display.hh
use arrays instead of vectors for the screeninfos and rendercontrols.
[chaz/openbox] / otk / display.hh
index 9402a8e7c1f79481481791673142cc623820fa3b..ccce6ae1bfbc9f19b3c721fbc75e49c5692eb48c 100644 (file)
@@ -6,8 +6,6 @@ extern "C" {
 #include <X11/Xlib.h>
 }
 
-#include <vector>
-
 namespace otk {
 
 class ScreenInfo;
@@ -54,11 +52,11 @@ private:
   int _grab_count;
 
   //! A list of information for all screens on the display
-  std::vector<ScreenInfo> _screenInfoList;
+  ScreenInfo** _screeninfo_list;
 
   //! A list of RenderControl objects, which are used for all graphics on a
   //! screen
-  std::vector<RenderControl*> _renderControlList;
+  RenderControl** _rendercontrol_list;
 
   //! A cache for re-using GCs, used by the drawing objects
   /*!
This page took 0.021427 seconds and 4 git commands to generate.