compilation error - escape char in exporter
This commit is contained in:
parent
052104c5a3
commit
0c0fb2fd95
4 changed files with 4 additions and 3 deletions
|
@ -10,5 +10,6 @@
|
||||||
<file>busy.png</file>
|
<file>busy.png</file>
|
||||||
<file>connected.png</file>
|
<file>connected.png</file>
|
||||||
<file>disconnected.png</file>
|
<file>disconnected.png</file>
|
||||||
|
<file>logo.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
BIN
resources/logo.png
Normal file
BIN
resources/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
|
@ -1,7 +1,7 @@
|
||||||
#ifndef JCESSLCLIENT_H
|
#ifndef JCESSLCLIENT_H
|
||||||
#define JCESSLCLIENT_H
|
#define JCESSLCLIENT_H
|
||||||
|
|
||||||
#include <String>
|
#include <QString>
|
||||||
#include <QSslSocket>
|
#include <QSslSocket>
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
#include <QEventLoop>
|
#include <QEventLoop>
|
||||||
|
|
|
@ -222,9 +222,9 @@ QString CSV_Exporter::makeLine(QString name, QDate *date, int startH, int startM
|
||||||
}
|
}
|
||||||
|
|
||||||
if(room == "")
|
if(room == "")
|
||||||
description = "\"\Good Luck!\n";
|
description = "\"Good Luck!\n";
|
||||||
|
|
||||||
description.append("\n Created with JCE Manager.\"");
|
description.append("\nCreated with JCE Manager.\"");
|
||||||
|
|
||||||
//Create the Fucking Line
|
//Create the Fucking Line
|
||||||
//Header: Subject,Start Date,Start Time,End Date,End Time,Description,Location
|
//Header: Subject,Start Date,Start Time,End Date,End Time,Description,Location
|
||||||
|
|
Loading…
Reference in a new issue