[Pkg-running-devel] [openambit] 66/131: Moved movescount to a separate folder

Christian Perrier bubulle at moszumanska.debian.org
Thu Jul 17 20:19:12 UTC 2014


This is an automated email from the git hooks/post-receive script.

bubulle pushed a commit to branch master
in repository openambit.

commit 17e121b4119452f704448f9fd993d002d0f5bc5c
Author: Emil Ljungdahl <emil at kratern.se>
Date:   Wed Jan 22 23:34:08 2014 +0100

    Moved movescount to a separate folder
---
 src/openambit/devicemanager.h                            | 4 ++--
 src/openambit/mainwindow.h                               | 2 +-
 src/openambit/movescount/include.pri                     | 9 +++++++++
 src/openambit/{ => movescount}/movescount.cpp            | 0
 src/openambit/{ => movescount}/movescount.h              | 0
 src/openambit/{ => movescount}/movescountjson.cpp        | 0
 src/openambit/{ => movescount}/movescountjson.h          | 0
 src/openambit/{ => movescount}/movescountlogdirentry.cpp | 0
 src/openambit/{ => movescount}/movescountlogdirentry.h   | 0
 src/openambit/{ => movescount}/movescountxml.cpp         | 0
 src/openambit/{ => movescount}/movescountxml.h           | 0
 src/openambit/openambit.pro                              | 9 +--------
 12 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/src/openambit/devicemanager.h b/src/openambit/devicemanager.h
index ee3203f..d8487cd 100644
--- a/src/openambit/devicemanager.h
+++ b/src/openambit/devicemanager.h
@@ -31,8 +31,8 @@
 
 #include "settings.h"
 #include "logstore.h"
-#include "movescount.h"
-#include "movescountxml.h"
+#include "movescount/movescount.h"
+#include "movescount/movescountxml.h"
 #include "udevlistener.h"
 #include <libambit.h>
 
diff --git a/src/openambit/mainwindow.h b/src/openambit/mainwindow.h
index 78b6e42..44de52f 100644
--- a/src/openambit/mainwindow.h
+++ b/src/openambit/mainwindow.h
@@ -25,7 +25,7 @@
 #include "devicemanager.h"
 #include "settingsdialog.h"
 #include "confirmbetadialog.h"
-#include "movescount.h"
+#include "movescount/movescount.h"
 #include <QMainWindow>
 #include <QThread>
 #include <QVBoxLayout>
diff --git a/src/openambit/movescount/include.pri b/src/openambit/movescount/include.pri
new file mode 100644
index 0000000..4d71af5
--- /dev/null
+++ b/src/openambit/movescount/include.pri
@@ -0,0 +1,9 @@
+SOURCES += movescountxml.cpp \
+    movescountjson.cpp \
+    movescount.cpp \
+    movescountlogdirentry.cpp
+HEADERS += movescountxml.h \
+    movescountjson.h \
+    movescount.h \
+    movescountlogdirentry.h
+
diff --git a/src/openambit/movescount.cpp b/src/openambit/movescount/movescount.cpp
similarity index 100%
rename from src/openambit/movescount.cpp
rename to src/openambit/movescount/movescount.cpp
diff --git a/src/openambit/movescount.h b/src/openambit/movescount/movescount.h
similarity index 100%
rename from src/openambit/movescount.h
rename to src/openambit/movescount/movescount.h
diff --git a/src/openambit/movescountjson.cpp b/src/openambit/movescount/movescountjson.cpp
similarity index 100%
rename from src/openambit/movescountjson.cpp
rename to src/openambit/movescount/movescountjson.cpp
diff --git a/src/openambit/movescountjson.h b/src/openambit/movescount/movescountjson.h
similarity index 100%
rename from src/openambit/movescountjson.h
rename to src/openambit/movescount/movescountjson.h
diff --git a/src/openambit/movescountlogdirentry.cpp b/src/openambit/movescount/movescountlogdirentry.cpp
similarity index 100%
rename from src/openambit/movescountlogdirentry.cpp
rename to src/openambit/movescount/movescountlogdirentry.cpp
diff --git a/src/openambit/movescountlogdirentry.h b/src/openambit/movescount/movescountlogdirentry.h
similarity index 100%
rename from src/openambit/movescountlogdirentry.h
rename to src/openambit/movescount/movescountlogdirentry.h
diff --git a/src/openambit/movescountxml.cpp b/src/openambit/movescount/movescountxml.cpp
similarity index 100%
rename from src/openambit/movescountxml.cpp
rename to src/openambit/movescount/movescountxml.cpp
diff --git a/src/openambit/movescountxml.h b/src/openambit/movescount/movescountxml.h
similarity index 100%
rename from src/openambit/movescountxml.h
rename to src/openambit/movescount/movescountxml.h
diff --git a/src/openambit/openambit.pro b/src/openambit/openambit.pro
index 03cc58b..d631d5c 100644
--- a/src/openambit/openambit.pro
+++ b/src/openambit/openambit.pro
@@ -11,6 +11,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
 TARGET = openambit
 TEMPLATE = app
 
+include(movescount/include.pri)
 
 SOURCES += main.cpp\
         mainwindow.cpp \
@@ -19,12 +20,8 @@ SOURCES += main.cpp\
     settings.cpp \
     logstore.cpp \
     logentry.cpp \
-    movescountxml.cpp \
-    movescountjson.cpp \
-    movescount.cpp \
     udevlistener.cpp \
     confirmbetadialog.cpp \
-    movescountlogdirentry.cpp \
     single_application.cpp
 
 HEADERS  += mainwindow.h \
@@ -33,12 +30,8 @@ HEADERS  += mainwindow.h \
     settings.h \
     logstore.h \
     logentry.h \
-    movescountxml.h \
-    movescountjson.h \
-    movescount.h \
     udevlistener.h \
     confirmbetadialog.h \
-    movescountlogdirentry.h \
     single_application.h
 
 FORMS    += mainwindow.ui \

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-running/openambit.git



More information about the Pkg-running-devel mailing list