diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-07-04 13:19:32 +0000 |
|---|---|---|
| committer | John Smith <removethis.john.q.public@bigmail.com> | 2012-07-04 13:19:32 +0000 |
| commit | 6349cd9ab09af9f9cd2a23c19e2cb8254f7651f0 (patch) | |
| tree | e73f50a6452d508919d9caa10cc15b276f18c7b3 /src | |
| parent | Fix for 168658 : Font substitution warning dialog - GTK3 compile (diff) | |
| download | inkscape-6349cd9ab09af9f9cd2a23c19e2cb8254f7651f0.tar.gz inkscape-6349cd9ab09af9f9cd2a23c19e2cb8254f7651f0.zip | |
Fix for 168658 : Font substitution warning dialog - GTK3 compile
(bzr r11525)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/font-substitution.cpp | 4 |
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); |
