diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-02-26 16:54:08 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-02-26 16:54:08 +0000 |
| commit | 43175d10160728a84a24f4b9b8de667c76d6cc8b (patch) | |
| tree | 2badbf7523341d7aa8fa4eef9cc855e03a485173 /src/ui/widget/labelled.cpp | |
| parent | header cleaning (diff) | |
| download | inkscape-43175d10160728a84a24f4b9b8de667c76d6cc8b.tar.gz inkscape-43175d10160728a84a24f4b9b8de667c76d6cc8b.zip | |
Clean up all remaining false warnings from Gtkmm
(bzr r11018)
Diffstat (limited to 'src/ui/widget/labelled.cpp')
| -rw-r--r-- | src/ui/widget/labelled.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/ui/widget/labelled.cpp b/src/ui/widget/labelled.cpp index ae3a4c744..df800545a 100644 --- a/src/ui/widget/labelled.cpp +++ b/src/ui/widget/labelled.cpp @@ -12,10 +12,11 @@ # include <config.h> #endif +#include "labelled.h" + /* For getting the Gtkmmified Icon manager */ #include "widgets/icon.h" - -#include "labelled.h" +#include <gtkmm/label.h> namespace Inkscape { namespace UI { @@ -64,7 +65,11 @@ Labelled::getLabel() const return _label; } - +void +Labelled::setLabelText(const Glib::ustring &str) +{ + _label->set_text(str); +} } // namespace Widget |
