changeset 8155:344c9b6532a2

symtab.cc (out_of_date_check_internal): fix order of arguments in call to load_path::find_method
author John W. Eaton <jwe@octave.org>
date Fri, 26 Sep 2008 15:19:41 -0400
parents 265a821f6555
children 2bc8ec18b2ea
files src/ChangeLog src/symtab.cc
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Fri Sep 26 13:29:29 2008 -0400
+++ b/src/ChangeLog	Fri Sep 26 15:19:41 2008 -0400
@@ -1,3 +1,8 @@
+2008-09-26  John W. Eaton  <jwe@octave.org>
+
+	* symtab.cc (out_of_date_check_internal):
+	Fix order of arguments in call to load_path::find_method.
+
 2008-09-26  David Bateman  <dbateman@free.fr>
 
 	* ov-class.h (idx_vector index_vector (void) const): Declare new
--- a/src/symtab.cc	Fri Sep 26 13:29:29 2008 -0400
+++ b/src/symtab.cc	Fri Sep 26 15:19:41 2008 -0400
@@ -194,7 +194,7 @@
 		      // decide whether it came from a relative lookup.
 
 		      if (! dispatch_type.empty ())
-			file = load_path::find_method (nm, dispatch_type,
+			file = load_path::find_method (dispatch_type, nm,
 						       dir_name);
 
 		      if (file.empty ())