diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2013-03-08 01:44:43 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2013-03-08 01:44:43 +0000 |
| commit | 1d3f07d09370bf8fefa7968706375ae3669dbd1c (patch) | |
| tree | 04210cdc85a6f90f3db35e45b06aeb8d2435b550 /src/extension/implementation/script.cpp | |
| parent | Drop more Gtk::Table usage (diff) | |
| download | inkscape-1d3f07d09370bf8fefa7968706375ae3669dbd1c.tar.gz inkscape-1d3f07d09370bf8fefa7968706375ae3669dbd1c.zip | |
Drop deprecated get_vbox method in Gtk::Dialog
(bzr r12181)
Diffstat (limited to '')
| -rw-r--r-- | src/extension/implementation/script.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index fa46569e2..3ac1e06ab 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -854,7 +854,11 @@ void Script::checkStderr (const Glib::ustring &data, GtkWidget *dlg = GTK_WIDGET(warning.gobj()); sp_transientize(dlg); +#if WITH_GTKMM_3_0 + Gtk::Box * vbox = warning.get_content_area(); +#else Gtk::Box * vbox = warning.get_vbox(); +#endif /* Gtk::TextView * textview = new Gtk::TextView(Gtk::TextBuffer::create()); */ Gtk::TextView * textview = new Gtk::TextView(); |
