Remove in-place translations support.
[dcpomatic.git] / src / lib / string_log_entry.h
index e3df5fd547b188dfd63d2c6f07b650bcbd2e1cd4..542a846460e1c5637618befcc2498f6812d67920 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "log_entry.h"
 #include <string>
 
+
 class StringLogEntry : public LogEntry
 {
 public:
        StringLogEntry (int type, std::string message);
 
-       std::string message () const {
+       std::string message () const override {
                return _message;
        }