]> vaikene.ee Git - evaf/blobdiff - src/libs/Gui/panel.cpp
Renamed Gui::Window to a more generic Gui::Panel, which can be a window, but also...
[evaf] / src / libs / Gui / panel.cpp
similarity index 85%
rename from src/libs/Gui/window.cpp
rename to src/libs/Gui/panel.cpp
index 880e1189ad2e49e3bf37c7ceb564dfc49bb42372..f5527897b99e904f25626c9bc73fc1344fa73ed7 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * @file Gui/window.cpp
+ * @file Gui/panel.cpp
  * @brief Version information for eVaf modules
  * @author Enar Vaikene
  *
  * Agreement provided with the Software.
  */
 
-#include "window.h"
+#include "panel.h"
 
 using namespace eVaf;
 
 //-------------------------------------------------------------------
 
-Gui::Window::Window(QWidget * parent)
-    : QWidget(parent)
+Gui::Panel::Panel(QWidget * parent, Qt::WindowFlags f)
+    : QWidget(parent, f)
 {}
 
-Gui::Window::~Window()
+Gui::Panel::~Panel()
 {}