]> git.sur5r.net Git - bacula/bacula/commitdiff
Preparation fixes: remove some warning
authorNorbert Bizet <norbert.bizet@baculasystems.com>
Thu, 2 Nov 2017 14:25:47 +0000 (15:25 +0100)
committerKern Sibbald <kern@sibbald.com>
Sun, 12 Nov 2017 09:44:11 +0000 (10:44 +0100)
bacula/src/lib/parse_conf.h
bacula/src/qt-console/bcomm/dircomm.h
bacula/src/qt-console/tray-monitor/runjob.cpp

index e0d3594147bd5ce53f53d171fc7ca52e8f0e47d3..3a8f2e60ceb63117374987bfd753cdea5c3c065c 100644 (file)
@@ -21,7 +21,7 @@
  *     Kern Sibbald, January MM
  *
  */
-
+#pragma once
 /* Used for certain keyword tables */
 struct s_kw {
    const char *name;
index 54ce58dc65fddf74f728397b15ef3c64b7cf9095..11ba9706b16bfdf72b2a87e5c0c760448355a220 100644 (file)
@@ -48,12 +48,12 @@ public:
    int  sock_read();
    bool authenticate_director(JCR *jcr, DIRRES *director, CONRES *cons, 
           char *buf, int buflen);
-   bool is_connected() { return m_sock != NULL; };
-   bool is_ready() { return is_connected() && m_at_prompt && m_at_main_prompt; };
+   bool is_connected() { return m_sock != NULL; }
+   bool is_ready() { return is_connected() && m_at_prompt && m_at_main_prompt; }
    char *msg();
    bool notify(bool enable); // enables/disables socket notification - returns the previous state
    bool is_notify_enabled() const;
-   bool is_in_command() const { return m_in_command > 0; };
+   bool is_in_command() const { return m_in_command > 0; }
    void terminate();
    bool connect_dir();                     
    int read(void);
index e6204ee45bb610250bdabb1b101721f6401d5198..7186335709e4ce2fec4e09eb8feab66f99ff1843 100644 (file)
@@ -381,6 +381,7 @@ bool TSched::read_command_file(const char *file, alist *lst, btime_t mtime)
 
 void TSched::timerEvent(QTimerEvent *event)
 {
+   Q_UNUSED(event)
    POOL_MEM tmp, command;
    TSchedJob *j;
    alist lst(10, not_owned_by_alist);