diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-07 20:25:51 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-07 20:38:44 +0200 |
commit | d5dcc702d4ccc59acbac3f67c50ad0f069ca96dc (patch) | |
tree | b62e12cd8b4dc874bda3e49613701c26a3597a2a | |
parent | c33a7f7a36a0e497561ec34c4a96ebbb437125dd (diff) |
fixes #1323
(cherry picked from commit 40d3905a2c7a87bc48ce1624aa6409df08b4fbde)
-rw-r--r-- | src/mir_app/src/database.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mir_app/src/database.cpp b/src/mir_app/src/database.cpp index 8ca3bcef1b..62b070129e 100644 --- a/src/mir_app/src/database.cpp +++ b/src/mir_app/src/database.cpp @@ -386,6 +386,9 @@ int tryOpenDatabase(const wchar_t *tszProfile) // just not supported.
continue;
+ case EGROKPRF_OBSOLETE:
+ break;
+
default:
return err;
}
|