mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
ea4df67b32
QSettings needs OrganizationName and ApplicationName to be set to work properly under Windows. Signed-off-by: Jeremie Guichard <djebrest@gmail.com>
15 lines
262 B
C++
15 lines
262 B
C++
#ifndef TESTDIVESITEDUPLICATION_H
|
|
#define TESTDIVESITEDUPLICATION_H
|
|
|
|
#include <QTest>
|
|
#include <functional>
|
|
|
|
class TestPreferences : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void testPreferences();
|
|
};
|
|
|
|
#endif // TESTDIVESITEDUPLICATION_H
|