Changeset 0816326 in confclerk_git
- Timestamp:
- 10/02/17 23:03:50 (5 years ago)
- Branches:
- master
- Children:
- f519c91
- Parents:
- 0c1d3ea
- git-author:
- Philipp Spitzer <philipp@…> (10/02/17 22:21:35)
- git-committer:
- Philipp Spitzer <philipp@…> (10/02/17 23:03:50)
- Location:
- src/sql
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sql/sqlengine.cpp
r0c1d3ea r0816326 38 38 #include <QDebug> 39 39 40 SqlEngine::SqlEngine(QObject *aParent): QObject(aParent) {40 SqlEngine::SqlEngine(QObject *aParent): QObject(aParent), DATE_FORMAT("yyyy-MM-dd"), TIME_FORMAT("hh:mm") { 41 41 #if QT_VERSION >= 0x050000 42 42 QDir dbPath(QStandardPaths::writableLocation(QStandardPaths::DataLocation)); -
src/sql/sqlengine.h
r0c1d3ea r0816326 29 29 Q_OBJECT 30 30 public: 31 const QString DATE_FORMAT = "yyyy-MM-dd";32 const QString TIME_FORMAT = "hh:mm";31 const QString DATE_FORMAT; // "yyyy-MM-dd" 32 const QString TIME_FORMAT; // "hh:mm" 33 33 34 34 QString dbFilename; ///< database filename including path
Note: See TracChangeset
for help on using the changeset viewer.