diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-02-07 12:17:05 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-02-07 12:17:05 +0000 |
| commit | 9195e5bf907b6e694ae33e4b46711d2a43acc2a2 (patch) | |
| tree | 8506dcab4582cf3ca18ae1822fb653ffc0449e71 /src/extension/param/enum.cpp | |
| parent | Cleaning up my mess... backward compatibility and fix Windows build (hopefully) (diff) | |
| download | inkscape-9195e5bf907b6e694ae33e4b46711d2a43acc2a2.tar.gz inkscape-9195e5bf907b6e694ae33e4b46711d2a43acc2a2.zip | |
Fix typo in gtkmm-2.22 backward compatibility
Fixed bugs:
- https://launchpad.net/bugs/927992
(bzr r10948)
Diffstat (limited to 'src/extension/param/enum.cpp')
| -rw-r--r-- | src/extension/param/enum.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/param/enum.cpp b/src/extension/param/enum.cpp index d58586992..e24b244ec 100644 --- a/src/extension/param/enum.cpp +++ b/src/extension/param/enum.cpp @@ -245,7 +245,7 @@ Gtk::Widget *ParamComboBox::get_widget(SPDocument * doc, Inkscape::XML::Node * n #if WITH_GTKMM_2_24 combo->append(text); #else - combo->append(text); + combo->append_text(text); #endif if ( _value && !entr->value.compare(_value) ) { |
