+
+ // do some consistency checks in debug mode: the name should be really just
+ // the filename and the path should be realyl just a path
+#ifdef __WXDEBUG__
+ wxString pathDummy, nameDummy, extDummy;
+
+ SplitPath(fullname, &pathDummy, &name, &ext, format);
+
+ wxASSERT_MSG( pathDummy.empty(),
+ _T("the file name shouldn't contain the path") );
+
+ SplitPath(fullpath, &volume, &path, &nameDummy, &extDummy, format);
+
+ wxASSERT_MSG( nameDummy.empty() && extDummy.empty(),
+ _T("the path shouldn't contain file name nor extension") );
+
+#else // !__WXDEBUG__