summaryrefslogtreecommitdiff
path: root/otk/display.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-19 23:27:59 +0000
committerDana Jansens <danakj@orodu.net>2003-01-19 23:27:59 +0000
commitd953cfe73c09ebeb9f9976784bf3d9fa5a5622f9 (patch)
tree20cdf36637b129be9cd95b804150a7886e30744d /otk/display.hh
parent6871cff3face4486055444a6c6218a552ddad461 (diff)
use arrays instead of vectors for the screeninfos and rendercontrols.
Diffstat (limited to 'otk/display.hh')
-rw-r--r--otk/display.hh6
1 files changed, 2 insertions, 4 deletions
diff --git a/otk/display.hh b/otk/display.hh
index 9402a8e7..ccce6ae1 100644
--- a/otk/display.hh
+++ b/otk/display.hh
@@ -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
/*!