summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/document-metadata.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/document-metadata.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/document-metadata.cpp')
-rw-r--r--src/ui/dialog/document-metadata.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/dialog/document-metadata.cpp b/src/ui/dialog/document-metadata.cpp
index efe25d843..09c505860 100644
--- a/src/ui/dialog/document-metadata.cpp
+++ b/src/ui/dialog/document-metadata.cpp
@@ -122,7 +122,7 @@ DocumentMetadata::build_metadata()
_page_metadata1.show();
- Gtk::Label *label = manage (new Gtk::Label);
+ Gtk::Label *label = Gtk::manage (new Gtk::Label);
label->set_markup (_("<b>Dublin Core Entities</b>"));
label->set_alignment (0.0);
@@ -140,7 +140,7 @@ DocumentMetadata::build_metadata()
if ( entity->editable == RDF_EDIT_GENERIC ) {
EntityEntry *w = EntityEntry::create (entity, _wr);
_rdflist.push_back (w);
- Gtk::HBox *space = manage (new Gtk::HBox);
+ Gtk::HBox *space = Gtk::manage (new Gtk::HBox);
space->set_size_request (SPACE_SIZE_X, SPACE_SIZE_Y);
#if WITH_GTKMM_3_0
@@ -164,7 +164,7 @@ DocumentMetadata::build_metadata()
_page_metadata2.show();
row = 0;
- Gtk::Label *llabel = manage (new Gtk::Label);
+ Gtk::Label *llabel = Gtk::manage (new Gtk::Label);
llabel->set_markup (_("<b>License</b>"));
llabel->set_alignment (0.0);
@@ -178,7 +178,7 @@ DocumentMetadata::build_metadata()
/* add license selector pull-down and URI */
++row;
_licensor.init (_wr);
- Gtk::HBox *space = manage (new Gtk::HBox);
+ Gtk::HBox *space = Gtk::manage (new Gtk::HBox);
space->set_size_request (SPACE_SIZE_X, SPACE_SIZE_Y);
#if WITH_GTKMM_3_0