Moved AboutDialog into Dialogs subdir.

This commit is contained in:
Joseph Lenox 2018-05-13 18:02:03 -05:00 committed by Joseph Lenox
parent 6635deeb03
commit 2b933efa8e
4 changed files with 5 additions and 4 deletions

View File

@ -206,7 +206,7 @@ IF(wxWidgets_FOUND)
include_directories(${wxWidgets_INCLUDE})
add_library(slic3r_gui STATIC
${GUI_LIBDIR}/AboutDialog.cpp
${GUI_LIBDIR}/Dialogs/AboutDialog.cpp
${GUI_LIBDIR}/GUI.cpp
${GUI_LIBDIR}/MainFrame.cpp
${GUI_LIBDIR}/Plater.cpp

View File

@ -1,4 +1,4 @@
#include "AboutDialog.hpp"
#include "Dialogs/AboutDialog.hpp"
namespace Slic3r { namespace GUI {
@ -87,7 +87,7 @@ void AboutDialogLogo::repaint(wxPaintEvent& event)
dc.SetBackgroundMode(wxPENSTYLE_TRANSPARENT);
const auto size {this->GetSize()};
const wxSize size {this->GetSize()};
const auto logo_w {this->logo.GetWidth()};
const auto logo_h {this->logo.GetHeight()};

View File

@ -3,9 +3,10 @@
#include <wx/accel.h>
#include <wx/utils.h>
#include "AboutDialog.hpp"
#include "libslic3r.h"
#include "Dialogs/AboutDialog.hpp"
namespace Slic3r { namespace GUI {
wxBEGIN_EVENT_TABLE(MainFrame, wxFrame)