]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/vidmode.h
compilation fix for PCH-less build
[wxWidgets.git] / interface / vidmode.h
index 43215eb0fd32b2c1fea840fbaaf05ee118d75997..a96d3192c92f78ec4aab82bbe67e6cdf9c0f9e55 100644 (file)
@@ -13,7 +13,7 @@
     Determines the sizes and locations of displays connected to the system.
 
     @library{wxcore}
-    @category{FIXME}
+    @category{misc}
 
     @stdobjects
     ::wxDefaultVideoMode
@@ -59,16 +59,25 @@ public:
     */
     bool IsOk() const;
 
-    /// The screen width in pixels (e.g. 640), 0 means unspecified.
+    /**
+        The screen width in pixels (e.g. 640), 0 means unspecified.
+    */
     int w;
 
-    /// The screen height in pixels (e.g. 480), 0 means unspecified.
+    /**
+        The screen height in pixels (e.g. 480), 0 means unspecified.
+    */
     int h;
 
-    /// Bits per pixel (e.g. 32), 1 is monochrome and 0 means unspecified/known.
+    /**
+        Bits per pixel (e.g. 32), 1 is monochrome and 0 means
+        unspecified/known.
+    */
     int bpp;
 
-    /// Refresh frequency in Hz, 0 means unspecified/unknown.
+    /**
+        Refresh frequency in Hz, 0 means unspecified/unknown.
+    */
     int refresh;
 };
 
@@ -76,3 +85,4 @@ public:
     A global wxVideoMode instance used by wxDisplay.
 */
 wxVideoMode wxDefaultVideoMode;
+