diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-15 03:19:27 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-15 03:19:27 +0100 |
commit | 3aababf6fd53a7b0312c2c1492bab6b43584b613 (patch) | |
tree | db74301d7bd91dad9862c47a4f6c45fd42f80b80 | |
parent | 47760a21c54f4695826210d1c23637b1cab8c179 (diff) |
api: expand empty string to "No error" for trackers
-rw-r--r-- | api/plugin-api.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/plugin-api.cpp b/api/plugin-api.cpp index d1e0d010..79f9b464 100644 --- a/api/plugin-api.cpp +++ b/api/plugin-api.cpp @@ -72,5 +72,5 @@ module_status ITracker::status_ok() module_status ITracker::error(const QString& error) { - return module_status(error); + return module_status_mixin::error(error); } |