Fix Clang warnings

This commit is contained in:
Gabriele Gristina 2019-07-10 18:46:30 +02:00
commit fa2595a619
2 changed files with 3 additions and 3 deletions

View file

@ -97,8 +97,8 @@ class WorkerThread : public QThread {
~WorkerThread();
void run();
private:
char *script_cmds_file = NULL;
char *script_cmd = NULL;
char *script_cmds_file;
char *script_cmd;
};
class ProxGuiQT : public QObject {