]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/label.cpp
Style update: add spaces around assignments
[libs/gltk.git] / source / label.cpp
index a91f821406292d4672053782b79ce1b3f9b70bae..60c3f431f9e35ca05016fc25366574d93a48474b 100644 (file)
@@ -18,32 +18,32 @@ Label::Label(const Resources &r, const string &t):
        Widget(r),
        text()
 {
-       focusable=false;
+       focusable = false;
        update_style();
        set_text(t);
 }
 
 void Label::autosize()
 {
-       const list<Part> &parts=style->get_parts();
-       const Part *text_part=0;
+       const list<Part> &parts = style->get_parts();
+       const Part *text_part = 0;
        for(list<Part>::const_iterator i=parts.begin(); (!text_part && i!=parts.end()); ++i)
                if(i->get_name()=="text")
-                       text_part=&*i;
+                       text_part = &*i;
 
-       geom.h=text.get_height();
-       geom.w=text.get_width();
+       geom.h = text.get_height();
+       geom.w = text.get_width();
        if(text_part)
        {
-               const Sides &margin=text_part->get_margin();
-               geom.w+=margin.left+margin.right;
-               geom.h+=margin.top+margin.bottom;
+               const Sides &margin = text_part->get_margin();
+               geom.w += margin.left+margin.right;
+               geom.h += margin.top+margin.bottom;
        }
 }
 
 void Label::set_text(const string &t)
 {
-       text=t;
+       text = t;
 }
 
 void Label::render_special(const Part &part) const
@@ -66,7 +66,7 @@ Label::Loader::Loader(Label &l):
 
 void Label::Loader::text(const string &t)
 {
-       static_cast<Label &>(wdg).text=t;
+       static_cast<Label &>(wdg).text = t;
 }
 
 } // namespace GLtk