]> git.tdb.fi Git - libs/gltk.git/commitdiff
Style and comment fixes
authorMikko Rasa <tdb@tdb.fi>
Tue, 8 Apr 2014 15:49:09 +0000 (18:49 +0300)
committerMikko Rasa <tdb@tdb.fi>
Tue, 8 Apr 2014 15:49:09 +0000 (18:49 +0300)
source/list.cpp
source/panel.h
source/widget.h

index 1b26a3ff7b20055ee7e773d585d86e09dab42371..83af9320aec7e6c093b8f31bb2e58bd0b9b12498 100644 (file)
@@ -118,7 +118,7 @@ void List::items_changed()
 
 List::Item *List::create_item(unsigned index)
 {
-       Item *item = 0; 
+       Item *item = 0;
        if(item_factory)
                item = item_factory->create_item(index);
        else
index 165cc6ad50f497cfe35f49f45502a6bfc6c639f4..e0eed014855030453f3dd62ce4e2ddf2e506ae57 100644 (file)
@@ -23,7 +23,7 @@ public:
        protected:
                WidgetMap &wdg_map;
                Widget *last_widget;
-       
+
        public:
                Loader(Panel &, WidgetMap &);
        private:
index 9caae9fb6216180654c9165dbe1893f2f1fec999..4550648aebd3adbfaaebc09b5f60669b05ade595 100644 (file)
@@ -17,8 +17,7 @@ class Resources;
 class Style;
 
 /**
-Base class for all widgets.  Derived classes should call update_style in 
-constructor, because it can't be done correctly in the Widget constructor.
+Base class for all widgets.
 */
 class Widget
 {