summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/swatches.cpp
diff options
context:
space:
mode:
authorMarkus Engel <markus.engel@tum.de>2014-03-30 21:43:02 +0000
committerMarkus Engel <markus.engel@tum.de>2014-03-30 21:43:02 +0000
commit1a8f0cfdf29561e9929216e0d9d6db637ab31d54 (patch)
tree9ffb28b50763a81000be3b5b6f4b367959c593eb /src/ui/dialog/swatches.cpp
parentinkjar: Fix access mode string (diff)
downloadinkscape-1a8f0cfdf29561e9929216e0d9d6db637ab31d54.tar.gz
inkscape-1a8f0cfdf29561e9929216e0d9d6db637ab31d54.zip
Added "Gtk::" scope to "manage" function calls.
(bzr r13236)
Diffstat (limited to 'src/ui/dialog/swatches.cpp')
-rw-r--r--src/ui/dialog/swatches.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/swatches.cpp b/src/ui/dialog/swatches.cpp
index 5e77a28ab..4f0cb211a 100644
--- a/src/ui/dialog/swatches.cpp
+++ b/src/ui/dialog/swatches.cpp
@@ -645,7 +645,7 @@ SwatchesPanel::SwatchesPanel(gchar const* prefsPath) :
std::vector<SwatchPage*> swatchSets = _getSwatchSets();
for ( std::vector<SwatchPage*>::iterator it = swatchSets.begin(); it != swatchSets.end(); ++it) {
SwatchPage* curr = *it;
- Gtk::RadioMenuItem* single = manage(new Gtk::RadioMenuItem(groupOne, curr->_name));
+ Gtk::RadioMenuItem* single = Gtk::manage(new Gtk::RadioMenuItem(groupOne, curr->_name));
if ( curr == first ) {
hotItem = single;
}