diff options
| author | Markus Engel <markus.engel@tum.de> | 2014-03-30 21:43:02 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2014-03-30 21:43:02 +0000 |
| commit | 1a8f0cfdf29561e9929216e0d9d6db637ab31d54 (patch) | |
| tree | 9ffb28b50763a81000be3b5b6f4b367959c593eb /src/ui/widget/licensor.cpp | |
| parent | inkjar: Fix access mode string (diff) | |
| download | inkscape-1a8f0cfdf29561e9929216e0d9d6db637ab31d54.tar.gz inkscape-1a8f0cfdf29561e9929216e0d9d6db637ab31d54.zip | |
Added "Gtk::" scope to "manage" function calls.
(bzr r13236)
Diffstat (limited to 'src/ui/widget/licensor.cpp')
| -rw-r--r-- | src/ui/widget/licensor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/widget/licensor.cpp b/src/ui/widget/licensor.cpp index c729354cb..42f352e3c 100644 --- a/src/ui/widget/licensor.cpp +++ b/src/ui/widget/licensor.cpp @@ -97,7 +97,7 @@ void Licensor::init (Registry& wr) LicenseItem *i; wr.setUpdating (true); - i = manage (new LicenseItem (&_proprietary_license, _eentry, wr, NULL)); + i = Gtk::manage (new LicenseItem (&_proprietary_license, _eentry, wr, NULL)); Gtk::RadioButtonGroup group = i->get_group(); add (*i); LicenseItem *pd = i; @@ -105,17 +105,17 @@ void Licensor::init (Registry& wr) for (struct rdf_license_t * license = rdf_licenses; license && license->name; license++) { - i = manage (new LicenseItem (license, _eentry, wr, &group)); + i = Gtk::manage (new LicenseItem (license, _eentry, wr, &group)); add(*i); } // add Other at the end before the URI field for the confused ppl. - LicenseItem *io = manage (new LicenseItem (&_other_license, _eentry, wr, &group)); + LicenseItem *io = Gtk::manage (new LicenseItem (&_other_license, _eentry, wr, &group)); add (*io); pd->set_active(); wr.setUpdating (false); - Gtk::HBox *box = manage (new Gtk::HBox); + Gtk::HBox *box = Gtk::manage (new Gtk::HBox); pack_start (*box, true, true, 0); box->pack_start (_eentry->_label, false, false, 5); |
