Restructuring directory layout. Move towards "Modern CMake" usage.

This commit is contained in:
Jim Evins
2017-11-23 22:15:24 -05:00
parent 8bec3594ec
commit b8ee5e1f73
198 changed files with 4509 additions and 5324 deletions
+3 -3
View File
@@ -20,7 +20,7 @@
#include "UndoRedoModel.h"
#include "LabelModel.h"
#include "model/Model.h"
namespace glabels
@@ -29,7 +29,7 @@ namespace glabels
///
/// Constructor
///
UndoRedoModel::UndoRedoModel( LabelModel* model )
UndoRedoModel::UndoRedoModel( model::Model* model )
{
mModel = model;
mNewSelection = true;
@@ -178,7 +178,7 @@ namespace glabels
///
/// State constructor
///
UndoRedoModel::State::State( LabelModel* model, const QString& description )
UndoRedoModel::State::State( model::Model* model, const QString& description )
{
this->model = model->save();
this->description = description;