]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/vidmode.h
Dispatch pending events without waiting for idle time (closes #10994).
[wxWidgets.git] / include / wx / vidmode.h
index c999eb7d86562c0940dcfe77b2711e1cdd442cc8..713beaeb3f29071a14e549498becff5007cfd25b 100644 (file)
 #define _WX_VMODE_H_
 
 // ----------------------------------------------------------------------------
-// wxVideoMode: a simple class containing video mode parameters for a display
+// wxVideoMode: a simple struct containing video mode parameters for a display
 // ----------------------------------------------------------------------------
 
-class WXDLLIMPEXP_CORE wxVideoMode
+struct WXDLLIMPEXP_CORE wxVideoMode
 {
-public:
     wxVideoMode(int width = 0, int height = 0, int depth = 0, int freq = 0)
     {
         w = width;
@@ -61,8 +60,6 @@ public:
     bool IsOk() const { return w && h; }
 
 
-protected:
-
     // the screen size in pixels (e.g. 640*480), 0 means unspecified
     int w, h;