summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4ddc5ae)
raw | patch | inline | side by side (parent: 4ddc5ae)
author | pjrm <pjrm@users.sourceforge.net> | |
Thu, 24 Apr 2008 03:06:59 +0000 (03:06 +0000) | ||
committer | pjrm <pjrm@users.sourceforge.net> | |
Thu, 24 Apr 2008 03:06:59 +0000 (03:06 +0000) |
src/ui/widget/labelled.cpp | patch | blob | history | |
src/ui/widget/labelled.h | patch | blob | history |
index 8f9eda3d73dc8bb75863be7d5a64231a937523bf..72c4f678574db44543238a8153dd3b61d0b90783 100644 (file)
}
-const Gtk::Widget* const
+Gtk::Widget const *
Labelled::getWidget() const
{
return _widget;
}
-const Gtk::Label* const
+Gtk::Label const *
Labelled::getLabel() const
{
return _label;
index 1823aeef291c138678803d09530bbeb62c78d033..3685944a41c43ef688160ca7951b65b039a3f619 100644 (file)
--- a/src/ui/widget/labelled.h
+++ b/src/ui/widget/labelled.h
* Allow the setting of the width of the labelled widget
*/
void setWidgetSizeRequest(int width, int height);
- const Gtk::Widget* const getWidget() const;
- const Gtk::Label* const getLabel() const;
+ Gtk::Widget const *getWidget() const;
+ Gtk::Label const *getLabel() const;
protected:
Gtk::Widget *_widget;