Author: rfm
Date: Wed Nov  2 13:03:15 2016
New Revision: 40189

URL: http://svn.gna.org/viewcvs/gnustep?rev=40189&view=rev
Log:
Post notifications without coalescing

Modified:
    libs/sqlclient/trunk/Postgres.m

Modified: libs/sqlclient/trunk/Postgres.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/sqlclient/trunk/Postgres.m?rev=40189&r1=40188&r2=40189&view=diff
==============================================================================
--- libs/sqlclient/trunk/Postgres.m     (original)
+++ libs/sqlclient/trunk/Postgres.m     Wed Nov  2 13:03:15 2016
@@ -557,10 +557,15 @@
 {
   NSNotificationQueue   *nq;
 
-  /* Post asynchronously
+  /* Post asynchronously with no coalesce
    */
   nq = [NSNotificationQueue defaultQueue];
   [nq enqueueNotification: n postingStyle: NSPostASAP];
+  [nq enqueueNotification: n
+             postingStyle: NSPostASAP
+             coalesceMask: 0
+                 forModes: nil];
+
 }
 
 /* This method must only be called when the receiver is locked.


_______________________________________________
Gnustep-cvs mailing list
Gnustep-cvs@gna.org
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to