diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-10-03 23:06:12 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-10-03 23:06:12 +0000 |
| commit | 20a8f057b8621a3d68f31edb2cb21e10f95d4cce (patch) | |
| tree | 408fcafe2c12bdac63335e1f8e47747c429d855b /src/widgets/font-selector.cpp | |
| parent | Fix for 1014988 : gtk 2.22 compile issues (diff) | |
| download | inkscape-20a8f057b8621a3d68f31edb2cb21e10f95d4cce.tar.gz inkscape-20a8f057b8621a3d68f31edb2cb21e10f95d4cce.zip | |
Fix for 168164 : gtk 2.22 compile issues
(bzr r11733)
Diffstat (limited to 'src/widgets/font-selector.cpp')
| -rw-r--r-- | src/widgets/font-selector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/font-selector.cpp b/src/widgets/font-selector.cpp index 0244621bf..61c6261bf 100644 --- a/src/widgets/font-selector.cpp +++ b/src/widgets/font-selector.cpp @@ -349,7 +349,7 @@ static void sp_font_selector_set_sizes( SPFontSelector *fsel ) #if GTK_CHECK_VERSION(2, 24,0) gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT(fsel->size), Glib::ustring::format(size).c_str()); #else - gtk_combo_box_append_text (GTK_COMBO_BOX(fsel->size), size); + gtk_combo_box_append_text (GTK_COMBO_BOX(fsel->size), Glib::ustring::format(size).c_str()); #endif } |
