diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-02-11 09:28:43 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-11 08:05:53 -0800 |
commit | 6d996a78742deb349cc1cb66ddea6abfb1b813d5 (patch) | |
tree | 59dcc66359ca254cf5b9a3a2f033104bf2d6beb9 /subsurface.pro | |
parent | ef14798d6d5e575a08aa8affc0815962813ecf29 (diff) | |
download | subsurface-6d996a78742deb349cc1cb66ddea6abfb1b813d5.tar.gz |
Add a structure to hold undo commands
Add the undocommands.cpp / undocommands.h files, which will hold a
collection of classes that will hold undo commands.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface.pro')
-rw-r--r-- | subsurface.pro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/subsurface.pro b/subsurface.pro index 5fb6ab5d2..d65c94f50 100644 --- a/subsurface.pro +++ b/subsurface.pro @@ -104,7 +104,8 @@ HEADERS = \ qt-ui/statistics/statisticsbar.h \ qt-ui/statistics/yearstatistics.h \ qt-ui/diveshareexportdialog.h \ - qt-ui/filtermodels.h + qt-ui/filtermodels.h \ + qt-ui/undocommands.h android: HEADERS -= \ qt-ui/usermanual.h \ @@ -198,7 +199,8 @@ SOURCES = \ qt-ui/statistics/statisticsbar.cpp \ qt-ui/statistics/monthstatistics.cpp \ qt-ui/diveshareexportdialog.cpp \ - qt-ui/filtermodels.cpp + qt-ui/filtermodels.cpp \ + qt-ui/undocommands.cpp android: SOURCES += android.cpp else: win32: SOURCES += windows.c |