gnome-utils r8280 - trunk/logview



Author: cosimoc
Date: Tue Dec 23 13:27:02 2008
New Revision: 8280
URL: http://svn.gnome.org/viewvc/gnome-utils?rev=8280&view=rev

Log:
Don't try to search even for the "" string.

Modified:
   trunk/logview/logview.c

Modified: trunk/logview/logview.c
==============================================================================
--- trunk/logview/logview.c	(original)
+++ trunk/logview/logview.c	Tue Dec 23 13:27:02 2008
@@ -432,7 +432,7 @@
 
   text = logview_findbar_get_text (LOGVIEW_FINDBAR (logview->priv->find_bar));
 
-  if (!text) {
+  if (!text || g_strcmp0 (text, "") == 0) {
     return;
   }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]