]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/log.h
added wxRect::operator+() and *() (union and intersection); also made other operators...
[wxWidgets.git] / include / wx / log.h
index c547984bb925f8046eecdec9b106bad19d97f773..8eb4cf7f3b613eb5ef5cc91693265de8ac73e8de 100644 (file)
@@ -714,13 +714,13 @@ wxSafeShowMessage(const wxString& title, const wxString& text);
 #ifdef __VISUALC__
     #define wxLogApiError(api, rc)                                            \
         wxLogDebug(wxT("%s(%d): '%s' failed with error 0x%08lx (%s)."),       \
-                   __TFILE__, __LINE__, api,                                  \
+                   __FILE__, __LINE__, api,                                   \
                    (long)rc, wxSysErrorMsg(rc))
 #else // !VC++
     #define wxLogApiError(api, rc)                                            \
         wxLogDebug(wxT("In file %s at line %d: '%s' failed with ")            \
                    wxT("error 0x%08lx (%s)."),                                \
-                   __TFILE__, __LINE__, api,                                  \
+                   __FILE__, __LINE__, api,                                   \
                    (long)rc, wxSysErrorMsg(rc))
 #endif // VC++/!VC++