]> git.saurik.com Git - wxWidgets.git/commitdiff
Added wxGUIAppTraits::GetToolkitInfo (ok?)
authorDavid Elliott <dfe@tgwbd.org>
Sun, 3 Aug 2003 04:29:53 +0000 (04:29 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Sun, 3 Aug 2003 04:29:53 +0000 (04:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22509 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/utils.cpp

index 2670e8e7385a0ba02824855fe4b0d647b4e5facd..320091fbb0daed46595a37b69e9effc59d8674c9 100644 (file)
@@ -49,6 +49,15 @@ void wxClientDisplayRect(int *x,int *y,int *width,int *height)
         *height=768;
 }
 
+wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
+{
+    static wxToolkitInfo info;
+    info.shortName = _T("cocoa");
+    info.name = _T("wxCocoa");
+    // TODO: Finish this
+    return info;
+}
+
 // Return TRUE if we have a colour display
 bool wxColourDisplay()
 {