changeset 149:fd960e586678

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 28 Aug 2017 11:11:16 +0300
parents 665421937ec8
children 2a8c97753381
files src/main.h
diffstat 1 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/main.h	Fri Aug 25 22:34:24 2017 +0300
+++ b/src/main.h	Mon Aug 28 11:11:16 2017 +0300
@@ -26,15 +26,16 @@
 //
 // Global application defines
 //
-#define APP_VENDOR        "TNSP"                    // Vendor ID (for settings, etc.)
-#define APP_ID            "Kampus Syntilista"       // Application ID (for settings)
-#define APP_NAME          "Café Kampus Syntilista"  // Application title/name
-#define APP_SQLITE_FILE   "syntilista.sqlite3"      // SQLite3 database file name (without path)
-#define APP_LOG_FILE      "log.txt"                 // Application log file name (without path)
+#define APP_VENDOR           "TNSP"                    // Vendor ID (for settings, etc.)
+#define APP_ID               "Kampus Syntilista"       // Application ID (for settings)
+#define APP_NAME             "Café Kampus Syntilista"  // Application title/name
+#define APP_SQLITE_FILE      "syntilista.sqlite3"      // SQLite3 database file name (without path)
+#define APP_LOG_FILE         "log.txt"                 // Application log file name (without path)
 
-#define SQL_LEN_FIRST_NAME 128
-#define SQL_LEN_LAST_NAME  128
-#define SQL_LEN_EXTRA_INFO 2048
+// SQL database field width/lengths
+#define SQL_LEN_FIRST_NAME   128
+#define SQL_LEN_LAST_NAME    128
+#define SQL_LEN_EXTRA_INFO   2048
 
 
 //