[gtkmm] Added TODO comments.



commit a40d09910a9757e5215094c5ed87baa0d67c47a8
Author: Murray Cumming <murrayc murrayc com>
Date:   Mon Mar 7 13:35:31 2011 +0100

    Added TODO comments.

 gtk/src/application.ccg |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gtk/src/application.ccg b/gtk/src/application.ccg
index c839677..7ae968c 100644
--- a/gtk/src/application.ccg
+++ b/gtk/src/application.ccg
@@ -134,7 +134,7 @@ int Application::run(Window& window, int argc, char** argv)
     sigc::mem_fun(*this, &Application::on_activate_showwindow));
 
   const int result = Gio::Application::run(argc, argv);
-  init_gtkmm_internals();
+  init_gtkmm_internals(); //TODO: This is too late. We want to do this as soon as possible, but it can't be done before gtk_init(argc, argv).
   return result;
 }
 
@@ -154,7 +154,7 @@ int Application::run(Window& window)
     sigc::mem_fun(*this, &Application::on_activate_showwindow));
 
   const int result = Gio::Application::run(m_argc, m_argv);
-  init_gtkmm_internals();
+  init_gtkmm_internals();  //TODO: This is too late. We want to do this as soon as possible, but it can't be done before gtk_init(argc, argv).
   return result;
 }
 
@@ -164,7 +164,7 @@ int Application::run()
   g_assert(m_argv);
 
   const int result = Gio::Application::run(m_argc, m_argv);
-  init_gtkmm_internals();
+  init_gtkmm_internals();  //TODO: This is too late. We want to do this as soon as possible, but it can't be done before gtk_init(argc, argv).
   return result;
 }
 



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