]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix VC6 compilation after r61919.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 14 Sep 2009 08:37:28 +0000 (08:37 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 14 Sep 2009 08:37:28 +0000 (08:37 +0000)
Work around VC6 bug which resulted in error C2639 when compiling the
declaration of an unnamed struct inside wxGridCellAttrProvider.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61922 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/grid.h

index d1bc9a4fe7364724a382dca91558a66bb2fe6d76..029507d7eac9802fcbf6353a98526435e962938e 100644 (file)
@@ -567,6 +567,9 @@ private:
     wxGridCellAttrProviderData *m_data;
 
     // this struct simply combines together the default header renderers
+    //
+    // FIXME-VC6: this struct must be named because of VC6 bug, it fails
+    //            with error C2639 on this struct declaration without it
     struct
     {
         wxGridColumnHeaderRendererDefault colRenderer;