Update of /cvsroot/mahogany/M/src/classes
In directory usw-pr-cvs1:/tmp/cvs-serv13684/src/classes

Modified Files:
        CacheFile.cpp ComposeTemplate.cpp MModule.cpp 
Log Message:
wxDirExists->wxPathExists, IsAbsPath->wxIsAbsolutePath

Index: CacheFile.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/CacheFile.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -u -2 -r1.3 -r1.4
--- CacheFile.cpp       13 Sep 2002 01:27:47 -0000      1.3
+++ CacheFile.cpp       13 Oct 2002 12:24:53 -0000      1.4
@@ -120,5 +120,5 @@
    wxSplitPath(filename, &dirname, NULL, NULL);
 
-   if ( !wxDirExists(dirname) )
+   if ( !wxPathExists(dirname) )
    {
       if ( !wxMkdir(dirname) )

Index: ComposeTemplate.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/ComposeTemplate.cpp,v
retrieving revision 1.38
retrieving revision 1.39
diff -b -u -2 -r1.38 -r1.39
--- ComposeTemplate.cpp 13 Sep 2002 01:27:47 -0000      1.38
+++ ComposeTemplate.cpp 13 Oct 2002 12:24:53 -0000      1.39
@@ -652,5 +652,5 @@
 {
    String filename = wxExpandEnvVars(name);
-   if ( !IsAbsPath(filename) )
+   if ( !wxIsAbsolutePath(filename) )
    {
       Profile *profile = mApplication->GetProfile();

Index: MModule.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/MModule.cpp,v
retrieving revision 1.73
retrieving revision 1.74
diff -b -u -2 -r1.73 -r1.74
--- MModule.cpp 12 Sep 2002 02:36:49 -0000      1.73
+++ MModule.cpp 13 Oct 2002 12:24:53 -0000      1.74
@@ -572,5 +572,5 @@
    {
       pathname = dirs[i];
-      if ( wxDirExists(pathname) )
+      if ( wxPathExists(pathname) )
       {
          // first look for MMDs



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to