[gnote] Replace Gtk::VBox by Gtk::Box



commit deab7d9b17b8870abc670c2f043a09e92e7c7d48
Author: Aurimas Ä?ernius <aurisc4 gmail com>
Date:   Sat Mar 5 22:15:11 2011 +0200

    Replace Gtk::VBox by Gtk::Box
    
    Gtk::VBox is not available in GTK 3.

 src/noterenamedialog.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/noterenamedialog.cpp b/src/noterenamedialog.cpp
index ec313a4..6d6abfb 100644
--- a/src/noterenamedialog.cpp
+++ b/src/noterenamedialog.cpp
@@ -167,7 +167,7 @@ NoteRenameDialog::NoteRenameDialog(const Note::List & notes,
   set_default_response(Gtk::RESPONSE_CANCEL);
   set_border_width(10);
 
-  Gtk::VBox * const vbox = get_vbox();
+  Gtk::Box * const vbox = get_vbox();
 
   add_action_widget(m_rename_button, Gtk::RESPONSE_YES);
   add_action_widget(m_dont_rename_button, Gtk::RESPONSE_NO);



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