Update of /cvsroot/mahogany/M/src/adb
In directory sc8-pr-cvs1:/tmp/cvs-serv19223/src/adb

Modified Files:
        AdbFrame.cpp AdbManager.cpp ProvBbdb.cpp 
Log Message:
Prevented recursion in MEvent::DispatchPending due to idle loop and wxYield in busy 
cursor

Index: AdbFrame.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/AdbFrame.cpp,v
retrieving revision 1.110
retrieving revision 1.111
diff -b -u -2 -r1.110 -r1.111
--- AdbFrame.cpp        31 Aug 2003 13:04:04 -0000      1.110
+++ AdbFrame.cpp        14 Sep 2003 16:10:45 -0000      1.111
@@ -1603,5 +1603,5 @@
 
   // loading of a big file might take quite some time
-  wxBeginBusyCursor();
+  MBeginBusyCursor();
 
   wxString strProv = szProvName;
@@ -1629,5 +1629,5 @@
   // we create it -- should it be changed?
 
-  wxEndBusyCursor();
+  MEndBusyCursor();
 
   return TRUE;

Index: AdbManager.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/AdbManager.cpp,v
retrieving revision 1.39
retrieving revision 1.40
diff -b -u -2 -r1.39 -r1.40
--- AdbManager.cpp      13 Sep 2003 16:03:15 -0000      1.39
+++ AdbManager.cpp      14 Sep 2003 16:10:45 -0000      1.40
@@ -244,5 +244,5 @@
   }
 
-  wxBusyCursor bc;
+  MBusyCursor bc;
 
   if ( AdbLookupForEntriesOrGroups(aEntries, &aMoreEntries, what, lookupMode,

Index: ProvBbdb.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/ProvBbdb.cpp,v
retrieving revision 1.33
retrieving revision 1.34
diff -b -u -2 -r1.33 -r1.34
--- ProvBbdb.cpp        13 Sep 2003 16:03:15 -0000      1.33
+++ ProvBbdb.cpp        14 Sep 2003 16:10:46 -0000      1.34
@@ -670,5 +670,5 @@
    MOcheck();
 
-   wxBeginBusyCursor();
+   MBeginBusyCursor();
 
    m_entries = new BbdbEntryList(false);
@@ -693,5 +693,5 @@
       wxLogError(_("BBDB: file has wrong header line: '%s'"),
                  line.c_str());
-      wxEndBusyCursor();
+      MEndBusyCursor();
       return;
    }
@@ -723,5 +723,5 @@
       wxLogWarning(_("BBDB: ignored %d entries with neither first nor last names."),
                    ignored);
-   wxEndBusyCursor();
+   MEndBusyCursor();
 }
 



-------------------------------------------------------
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