[glom] Fixed non-exception build after the CsvParser refactoring



commit 4461f4f59ce0e979a3780758d8f588fbb01bc1f4
Author: Johannes Schmid <jhs jsschmid de>
Date:   Mon Sep 14 20:03:12 2009 +0200

    Fixed non-exception build after the CsvParser refactoring

 ChangeLog                 |    5 +++++
 glom/dialog_import_csv.cc |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index b3f0802..a8cc2f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-14  Johannes Schmid  <jschmid openismus com>
+
+	* glom/dialog_import_csv.cc:
+	Fixed maemo non-exception build of CsvParser refactoring.
+
 2009-09-14  Murray Cumming  <murrayc murrayc com>
 
 	Main Window: Correct (again) the order of Records/Found widgets.
diff --git a/glom/dialog_import_csv.cc b/glom/dialog_import_csv.cc
index 8dc616a..6204041 100644
--- a/glom/dialog_import_csv.cc
+++ b/glom/dialog_import_csv.cc
@@ -430,9 +430,9 @@ void Dialog_Import_CSV::on_stream_read(const Glib::RefPtr<Gio::AsyncResult>& res
 
       // If the parser already exists, but it is currently not parsing because it waits
       // for new input, then continue parsing.
-      if(m_parser.get() && !m_parser->idle_connection.connected())
+      if(m_parser.get() && !m_parser->m_idle_connection.connected())
       {
-        m_parser->idle_connection = Glib::signal_idle().connect(sigc::mem_fun(*this, &Dialog_Import_CSV::on_idle_parse));
+        m_parser->m_idle_connection = Glib::signal_idle().connect(sigc::mem_fun(*m_parser.get(), &CsvParser::on_idle_parse));
       }
       // If the parser does not exist yet, then create a new parser, except when the
       // current encoding does not work for the file ,in which case the user must first



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