Code

noop: Address a couple of warnings from g++-4.3.
authorpjrm <pjrm@users.sourceforge.net>
Thu, 24 Apr 2008 03:06:59 +0000 (03:06 +0000)
committerpjrm <pjrm@users.sourceforge.net>
Thu, 24 Apr 2008 03:06:59 +0000 (03:06 +0000)
src/ui/widget/labelled.cpp
src/ui/widget/labelled.h

index 8f9eda3d73dc8bb75863be7d5a64231a937523bf..72c4f678574db44543238a8153dd3b61d0b90783 100644 (file)
@@ -71,13 +71,13 @@ void Labelled::setWidgetSizeRequest(int width, int height)
 
 }
 
-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)
@@ -36,8 +36,8 @@ public:
      * 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;