summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2013-08-15 09:07:55 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2013-08-15 09:07:55 +0000
commit0be39e335f73b5b7770f1580871f48ca1791ced4 (patch)
tree802fb156a1af291231075851ee5eb551246fffea /src
parentFix warning and hopefully fix build failures on Launchpad (diff)
downloadinkscape-0be39e335f73b5b7770f1580871f48ca1791ced4.tar.gz
inkscape-0be39e335f73b5b7770f1580871f48ca1791ced4.zip
Fix Gtk+ 3 build failure and make check
(bzr r12479)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/template-load-tab.cpp3
-rw-r--r--src/ui/dialog/template-widget.cpp8
-rw-r--r--src/ui/dialog/template-widget.h3
3 files changed, 8 insertions, 6 deletions
diff --git a/src/ui/dialog/template-load-tab.cpp b/src/ui/dialog/template-load-tab.cpp
index 0123f663f..265ee8026 100644
--- a/src/ui/dialog/template-load-tab.cpp
+++ b/src/ui/dialog/template-load-tab.cpp
@@ -8,9 +8,10 @@
* Released under GNU GPL, read the file 'COPYING' for more information
*/
-#include "template-load-tab.h"
#include "template-widget.h"
+#include "template-load-tab.h"
+
#include <gtkmm/messagedialog.h>
#include <gtkmm/scrolledwindow.h>
#include <glibmm/i18n.h>
diff --git a/src/ui/dialog/template-widget.cpp b/src/ui/dialog/template-widget.cpp
index dfc26913f..be7e2b515 100644
--- a/src/ui/dialog/template-widget.cpp
+++ b/src/ui/dialog/template-widget.cpp
@@ -1,5 +1,3 @@
-
-
/** @file
* @brief New From Template - templates widget - implementation
*/
@@ -11,15 +9,17 @@
*/
#include "template-widget.h"
-#include "template-load-tab.h"
-#include "file.h"
#include <gtkmm/alignment.h>
#include <gtkmm/button.h>
#include <gtkmm/label.h>
#include <gtkmm/messagedialog.h>
+
#include <glibmm/i18n.h>
+#include <glibmm/miscutils.h>
+#include "template-load-tab.h"
+#include "file.h"
namespace Inkscape {
namespace UI {
diff --git a/src/ui/dialog/template-widget.h b/src/ui/dialog/template-widget.h
index c7847460f..f7e1267ce 100644
--- a/src/ui/dialog/template-widget.h
+++ b/src/ui/dialog/template-widget.h
@@ -11,10 +11,11 @@
#ifndef INKSCAPE_SEEN_UI_DIALOG_TEMPLATE_WIDGET_H
#define INKSCAPE_SEEN_UI_DIALOG_TEMPLATE_WIDGET_H
-#include "template-load-tab.h"
#include "filedialogimpl-gtkmm.h"
+
#include <gtkmm/box.h>
+#include "template-load-tab.h"
namespace Inkscape {
namespace UI {