]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix links to wxArtClient and wxArtID in the generated documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 16 May 2010 12:31:52 +0000 (12:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 16 May 2010 12:31:52 +0000 (12:31 +0000)
Add a "class" keyword to fix what looks like a bug in Doxygen.

Closes #12052.

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

interface/wx/artprov.h

index cc25af31ecc0f6ef513c1dfd160bc874c22930ab..149e49ba42ff31e8762b1e77eb967462f98d5a52 100644 (file)
@@ -9,12 +9,12 @@
 /**
     This type identifies the client of the art objects requested to wxArtProvider.
 */
-typedef wxString wxArtClient;
+typedef class wxString wxArtClient;
 
 /**
     This type identifies a specific art object which can be requested to wxArtProvider.
 */
-typedef wxString wxArtID;
+typedef class wxString wxArtID;
 
 
 /**