sorted everything
This commit is contained in:
parent
ac65bc6ed1
commit
f3f208258d
17 changed files with 20 additions and 20 deletions
|
@ -145,7 +145,7 @@ Window {
|
|||
SoundEffect {
|
||||
//start sound
|
||||
id: startSound
|
||||
source: "OFFICAL_IFSC_STARTIGNAL.wav"
|
||||
source: "qrc:/sounds/OFFICAL_IFSC_STARTIGNAL.wav"
|
||||
|
||||
onPlayingChanged: {
|
||||
if(!playing){
|
|
@ -1,6 +1,5 @@
|
|||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>OFFICAL_IFSC_STARTIGNAL.wav</file>
|
||||
<file>graphics/icons/settings.png</file>
|
||||
<file>graphics/icons/user.png</file>
|
||||
<file>graphics/icons/menu_black.png</file>
|
||||
|
@ -9,6 +8,7 @@
|
|||
<file>graphics/icons/menu.png</file>
|
||||
<file>graphics/icons/drawer.png</file>
|
||||
<file>graphics/icons/back.png</file>
|
||||
<file>sounds/OFFICAL_IFSC_STARTIGNAL.wav</file>
|
||||
<file>sounds/ready_1.wav</file>
|
||||
<file>sounds/at_marks_1.wav</file>
|
||||
<file>sounds/ready_2.wav</file>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "appsettings.h"
|
||||
#include "headers/appsettings.h"
|
||||
|
||||
AppSettings::AppSettings(QObject* parent)
|
||||
:QObject(parent)
|
|
@ -1,4 +1,4 @@
|
|||
#include "buzzerconn.h"
|
||||
#include "headers/buzzerconn.h"
|
||||
|
||||
BuzzerConn::BuzzerConn(QObject *parent) : QObject(parent)
|
||||
{
|
|
@ -31,10 +31,10 @@
|
|||
#ifdef Q_OS_ANDROID
|
||||
#include <QtAndroidExtras>
|
||||
#endif
|
||||
#include "sqlstoragemodel.h"
|
||||
#include "sqlprofilemodel.h"
|
||||
#include "buzzerconn.h"
|
||||
#include "appsettings.h"
|
||||
#include "headers/sqlstoragemodel.h"
|
||||
#include "headers/sqlprofilemodel.h"
|
||||
#include "headers/buzzerconn.h"
|
||||
#include "headers/appsettings.h"
|
||||
|
||||
static void connectToDatabase()
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
#include "sqlprofilemodel.h"
|
||||
#include "headers/sqlprofilemodel.h"
|
||||
|
||||
static void createTable()
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
#include "sqlstoragemodel.h"
|
||||
#include "headers/sqlstoragemodel.h"
|
||||
|
||||
SqlStorageModel::SqlStorageModel(QObject *parent) : QObject(parent)
|
||||
{
|
|
@ -19,13 +19,13 @@ DEFINES += QT_DEPRECATED_WARNINGS
|
|||
TARGET = speedclimbing_stw
|
||||
|
||||
SOURCES += \
|
||||
main.cpp \
|
||||
sqlstoragemodel.cpp \
|
||||
sqlprofilemodel.cpp \
|
||||
buzzerconn.cpp \
|
||||
appsettings.cpp
|
||||
sources/main.cpp \
|
||||
sources/sqlstoragemodel.cpp \
|
||||
sources/sqlprofilemodel.cpp \
|
||||
sources/buzzerconn.cpp \
|
||||
sources/appsettings.cpp
|
||||
|
||||
RESOURCES += qml.qrc \
|
||||
RESOURCES += qml/qml.qrc \
|
||||
shared.qrc
|
||||
|
||||
# Additional import path used to resolve QML modules in Qt Creator's code model
|
||||
|
@ -51,7 +51,7 @@ android {
|
|||
}
|
||||
|
||||
HEADERS += \
|
||||
sqlstoragemodel.h \
|
||||
sqlprofilemodel.h \
|
||||
buzzerconn.h \
|
||||
appsettings.h
|
||||
headers/sqlstoragemodel.h \
|
||||
headers/sqlprofilemodel.h \
|
||||
headers/buzzerconn.h \
|
||||
headers/appsettings.h
|
||||
|
|
Reference in a new issue