]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/apptrait.h
suppress a CodeWarrior warning about long to int conversion (bug 1616948)
[wxWidgets.git] / include / wx / apptrait.h
index 3595571c282259c1b78b25401bfceb7decefa95e..1513596cc7114ee4cb2d8c8c709eef517cdd747d 100644 (file)
@@ -118,10 +118,16 @@ public:
 
     // return true if the port is using wxUniversal for the GUI, false if not
     virtual bool IsUsingUniversalWidgets() const = 0;
-    
-    // return the name of the Desktop Environment such as 
+
+    // return the name of the Desktop Environment such as
     // "KDE" or "GNOME". May return an empty string.
     virtual wxString GetDesktopEnvironment() const { return wxEmptyString; }
+
+protected:
+#if wxUSE_STACKWALKER && defined( __WXDEBUG__ )
+    // utility function: returns the stack frame as a plain wxString
+    virtual wxString GetAssertStackTrace();
+#endif
 };
 
 // ----------------------------------------------------------------------------