summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/symbols.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2012-11-26 10:33:19 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2012-11-26 10:33:19 +0000
commit4af19c56cf90e31a0d800821e8daf7fb08108e94 (patch)
tree4ca77fb82df33bbc9aef4660f7b2da51ff32122d /src/ui/dialog/symbols.cpp
parentUpdated Russian translation (diff)
downloadinkscape-4af19c56cf90e31a0d800821e8daf7fb08108e94.tar.gz
inkscape-4af19c56cf90e31a0d800821e8daf7fb08108e94.zip
Drop support for GTK+ < 2.24
Fixed bugs: - https://launchpad.net/bugs/1069024 (bzr r11907)
Diffstat (limited to 'src/ui/dialog/symbols.cpp')
-rw-r--r--src/ui/dialog/symbols.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ui/dialog/symbols.cpp b/src/ui/dialog/symbols.cpp
index 4c3a406f0..9d4ab5d8a 100644
--- a/src/ui/dialog/symbols.cpp
+++ b/src/ui/dialog/symbols.cpp
@@ -103,11 +103,7 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) :
table->attach(*Gtk::manage(labelSet),0,1,row,row+1,Gtk::SHRINK,Gtk::SHRINK);
symbolSet = new Gtk::ComboBoxText(); // Fill in later
-#if WITH_GTKMM_2_24
symbolSet->append(_("Current Document"));
-#else
- symbolSet->append_text(_("Current Document"));
-#endif
symbolSet->set_active_text(_("Current Document"));
table->attach(*Gtk::manage(symbolSet),1,2,row,row+1,Gtk::FILL|Gtk::EXPAND,Gtk::SHRINK);
@@ -151,11 +147,7 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) :
const gchar *scales[] =
{_("Fit"), _("Fit to width"), _("Fit to height"), "0.1", "0.2", "0.5", "1.0", "2.0", "5.0", NULL};
for( int i = 0; scales[i]; ++i ) {
-#if WITH_GTKMM_2_24
previewScale->append(scales[i]);
-#else
- previewScale->append_text(scales[i]);
-#endif
}
previewScale->set_active_text(scales[0]);
table->attach(*Gtk::manage(previewScale),1,2,row,row+1,Gtk::FILL|Gtk::EXPAND,Gtk::SHRINK);
@@ -173,12 +165,7 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) :
previewSize = new Gtk::ComboBoxText();
const gchar *sizes[] = {"16", "24", "32", "48", "64", NULL};
for( int i = 0; sizes[i]; ++i ) {
-#if WITH_GTKMM_2_24
previewSize->append(sizes[i]);
-#else
- previewSize->append_text(sizes[i]);
-#endif
-
}
previewSize->set_active_text(sizes[2]);
table->attach(*Gtk::manage(previewSize),1,2,row,row+1,Gtk::FILL|Gtk::EXPAND,Gtk::SHRINK);
@@ -333,11 +320,7 @@ void SymbolsDialog::get_symbols() {
SPDocument* symbol_doc = SPDocument::createNewDoc( fullname, FALSE );
if( symbol_doc ) {
symbolSets[Glib::ustring(filename)]= symbol_doc;
-#if WITH_GTKMM_2_24
symbolSet->append(filename);
-#else
- symbolSet->append_text(filename);
-#endif
}
}
g_free( fullname );