summaryrefslogtreecommitdiffstats
path: root/src/templates/static-template-load-tab.cpp
diff options
context:
space:
mode:
authorSlagvi Public <JandotDarowskiattgmaildottcom>2013-06-27 09:43:19 +0000
committerSlagvi Public <JandotDarowskiattgmaildottcom>2013-06-27 09:43:19 +0000
commit0b13569c400bb2976c5f71cbac687b5e96c2e7a0 (patch)
tree3a561dbb042e75f3b4594fe76d26a464200499e0 /src/templates/static-template-load-tab.cpp
parentChanged comboBox into editable (diff)
downloadinkscape-0b13569c400bb2976c5f71cbac687b5e96c2e7a0.tar.gz
inkscape-0b13569c400bb2976c5f71cbac687b5e96c2e7a0.zip
Coding style fixes
(bzr r12379.2.4)
Diffstat (limited to 'src/templates/static-template-load-tab.cpp')
-rw-r--r--src/templates/static-template-load-tab.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/templates/static-template-load-tab.cpp b/src/templates/static-template-load-tab.cpp
index e71b9dede..83ff32e52 100644
--- a/src/templates/static-template-load-tab.cpp
+++ b/src/templates/static-template-load-tab.cpp
@@ -9,25 +9,25 @@ namespace Inkscape {
namespace UI {
-StaticTemplateLoadTab::StaticTemplateLoadTab() :
- _moreInfoButton("More info"),
- _previewImage("preview.png"),
- _shortDescriptionLabel("Short description - I like trains. ad asda asd asdweqe gdfg"),
- _templateNameLabel("Template_name"),
- _templateAuthorLabel("by template_author")
+StaticTemplateLoadTab::StaticTemplateLoadTab()
+ : _more_info_button("More info")
+ , _preview_image("preview.png")
+ , _short_description_label("Short description - I like trains. ad asda asd asdweqe gdfg")
+ , _template_name_label("Template_name")
+ , _template_author_label("by template_author")
{
- _templateInfoColumn.pack_start(_templateNameLabel, Gtk::PACK_SHRINK, 4);
- _templateInfoColumn.pack_start(_templateAuthorLabel, Gtk::PACK_SHRINK, 0);
- _templateInfoColumn.pack_start(_previewImage, Gtk::PACK_SHRINK, 15);
- _templateInfoColumn.pack_start(_shortDescriptionLabel, Gtk::PACK_SHRINK, 4);
+ _template_info_column.pack_start(_template_name_label, Gtk::PACK_SHRINK, 4);
+ _template_info_column.pack_start(_template_author_label, Gtk::PACK_SHRINK, 0);
+ _template_info_column.pack_start(_preview_image, Gtk::PACK_SHRINK, 15);
+ _template_info_column.pack_start(_short_description_label, Gtk::PACK_SHRINK, 4);
- _shortDescriptionLabel.set_line_wrap(true);
- _shortDescriptionLabel.set_size_request(200);
+ _short_description_label.set_line_wrap(true);
+ _short_description_label.set_size_request(200);
Gtk::Alignment *align;
align = manage(new Gtk::Alignment(Gtk::ALIGN_END, Gtk::ALIGN_CENTER, 0.0, 0.0));
- _templateInfoColumn.pack_start(*align, Gtk::PACK_SHRINK, 5);
- align->add(_moreInfoButton);
+ _template_info_column.pack_start(*align, Gtk::PACK_SHRINK, 5);
+ align->add(_more_info_button);
}
@@ -40,7 +40,7 @@ void StaticTemplateLoadTab::createTemplate()
void StaticTemplateLoadTab::_displayTemplateInfo()
{
TemplateLoadTab::_displayTemplateInfo();
- _templateNameLabel.set_text(_currentTemplate);
+ _template_name_label.set_text(_current_template);
}
}