src/widgets.h

changeset 667
31540c1f22ea
parent 603
47e7773c7841
--- a/src/widgets.h	Wed Oct 23 13:14:17 2013 +0300
+++ b/src/widgets.h	Mon Jan 20 15:04:26 2014 +0200
@@ -1,6 +1,6 @@
 /*
  *  LDForge: LDraw parts authoring CAD
- *  Copyright (C) 2013 Santeri Piippo
+ *  Copyright (C) 2013, 2014 Santeri Piippo
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
 #include <QGroupBox>
 #include <QSpinBox>
 #include <map>
-#include "common.h"
+#include "main.h"
 #include "types.h"
 
 class QIcon;
@@ -37,17 +37,20 @@
 // Convenience widget - is a groupbox of radio buttons.
 // =============================================================================
 class RadioGroup : public QGroupBox
-{	Q_OBJECT
+{
+	Q_OBJECT
 
 	public:
 		typedef QList<QRadioButton*>::Iterator Iterator;
 
 		explicit RadioGroup()
-		{	init (Qt::Vertical);
+		{
+			init (Qt::Vertical);
 		}
 
 		explicit RadioGroup (QWidget* parent = null) : QGroupBox (parent)
-		{	init (Qt::Vertical);
+		{
+			init (Qt::Vertical);
 		}
 
 		explicit RadioGroup (const QString& title, QWidget* parent = null);

mercurial