]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
wxSplitPath() handles correctly filenames with '.' but without extension
[wxWidgets.git] / src / common / log.cpp
index 8708f2debc52375bf1ea4b973f660cea57a454a3..03267bf2d3a17ab15de7720779189f6d3872e3f7 100644 (file)
@@ -986,7 +986,7 @@ void wxOnAssert(const char *szFile, int nLine, const char *szMsg)
 
   // make life easier for people using VC++ IDE: clicking on the message will
   // take us immediately to the place of the failed assert
-#ifdef _MSC_VER
+#ifdef __VISUALC__
   sprintf(szBuf, _("%s(%d): assert failed"), szFile, nLine);
 #else  // !VC++
   // make the error message more clear for all the others