summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorJohn Smith <john.smith7545@yahoo.com>2012-07-04 13:19:32 +0000
committerJohn Smith <removethis.john.q.public@bigmail.com>2012-07-04 13:19:32 +0000
commit6349cd9ab09af9f9cd2a23c19e2cb8254f7651f0 (patch)
treee73f50a6452d508919d9caa10cc15b276f18c7b3 /src/ui
parentFix for 168658 : Font substitution warning dialog - GTK3 compile (diff)
downloadinkscape-6349cd9ab09af9f9cd2a23c19e2cb8254f7651f0.tar.gz
inkscape-6349cd9ab09af9f9cd2a23c19e2cb8254f7651f0.zip
Fix for 168658 : Font substitution warning dialog - GTK3 compile
(bzr r11525)
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/dialog/font-substitution.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/font-substitution.cpp b/src/ui/dialog/font-substitution.cpp
index b294490a3..086798f19 100644
--- a/src/ui/dialog/font-substitution.cpp
+++ b/src/ui/dialog/font-substitution.cpp
@@ -101,9 +101,9 @@ FontSubstitution::show(Glib::ustring out, GSList *l)
cbWarning->show();
#if GTK_CHECK_VERSION(3,0,0)
- Gtk::VBox * box = warning.get_content_area();
+ Gtk::Box * box = warning.get_content_area();
#else
- Gtk::VBox * box = warning.get_vbox();
+ Gtk::Box * box = warning.get_vbox();
#endif
box->set_spacing(2);
box->pack_start(*scrollwindow, true, true, 4);