Update of /cvsroot/mahogany/M/src/modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15929/src/modules

Modified Files:
        Filters.cpp PalmOS.cpp 
Log Message:
changed MProgressDialog to take flags, as wxProgressDialog does, not bool parameters

Index: Filters.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/Filters.cpp,v
retrieving revision 1.197
retrieving revision 1.198
diff -b -u -2 -r1.197 -r1.198
--- Filters.cpp 11 Jul 2004 22:52:32 -0000      1.197
+++ Filters.cpp 13 Jul 2004 23:28:56 -0000      1.198
@@ -2802,7 +2802,5 @@
                   _T("\n\n"),  // must be tall enough for 3 lines
                   2*m_msgs.GetCount(),
-                  frame,
-                  false,   // !"disable parent only"
-                  true     // show "cancel" button
+                  frame
                );
    }

Index: PalmOS.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/modules/PalmOS.cpp,v
retrieving revision 1.121
retrieving revision 1.122
diff -b -u -2 -r1.121 -r1.122
--- PalmOS.cpp  8 Jul 2004 21:46:27 -0000       1.121
+++ PalmOS.cpp  13 Jul 2004 23:28:56 -0000      1.122
@@ -1070,6 +1070,5 @@
    // open progress dialog
    MProgressDialog *pd;
-   pd = new MProgressDialog(_("Palm Backup"), _("Backing up files"),
-                            max, NULL, false, true);
+   pd = new MProgressDialog(_("Palm Backup"), _("Backing up files"), max);
 
    // resetting values
@@ -1297,6 +1296,5 @@
          }
 
-   pd = new MProgressDialog(_("Palm Install"), _("Installing files"),
-                            dbcount, NULL, false, true);
+   pd = new MProgressDialog(_("Palm Install"), _("Installing files"), dbcount);
 
    // Install files



-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to