[anjuta] symbol-db: swapped parameters on iface sync calls.



commit 46309291b4cce0fca6a220536775c8aedb3f9dc3
Author: Massimo Corà <mcora src gnome org>
Date:   Wed Dec 9 00:40:29 2009 +0100

    symbol-db: swapped parameters on iface sync calls.
    
    This could cause empty queries on sync calls.

 plugins/symbol-db/symbol-db-iface.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/plugins/symbol-db/symbol-db-iface.c b/plugins/symbol-db/symbol-db-iface.c
index e459b6e..851b04c 100644
--- a/plugins/symbol-db/symbol-db-iface.c
+++ b/plugins/symbol-db/symbol-db-iface.c
@@ -322,8 +322,8 @@ isymbol_manager_search_system (IAnjutaSymbolManager *sm, IAnjutaSymbolType match
 	/* take the global's engine */
 	dbe = SYMBOL_DB_ENGINE (sdb_plugin->sdbe_globals);
 
-	iterator = do_search_prj_glb (dbe, match_types, info_fields, 
-	                      include_types, pattern, filescope_search,
+	iterator = do_search_prj_glb (dbe, match_types, include_types, 
+	                      info_fields, pattern, filescope_search,
 						  results_limit, results_offset,
 	           			  sdb_plugin->session_packages);
 
@@ -455,8 +455,8 @@ isymbol_manager_search_project (IAnjutaSymbolManager *sm, IAnjutaSymbolType matc
 	/* take the project's engine */
 	dbe = SYMBOL_DB_ENGINE (sdb_plugin->sdbe_project);
 
-	iterator = do_search_prj_glb (dbe, match_types, info_fields, 
-	                      include_types, pattern, filescope_search,
+	iterator = do_search_prj_glb (dbe, match_types, include_types, 
+	                      info_fields, pattern, filescope_search,
 						  results_limit, results_offset,
 	           			  NULL);
 



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