diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2017-08-14 13:51:49 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2017-08-14 13:51:49 +0300 |
commit | 5bed820b5e10082b9437aaecab79ad6b0740ff48 (patch) | |
tree | c202e2ca034fdd297fd1748561653b6ab85bf52d /plugins/NewXstatusNotify | |
parent | af4240e598e44c065a102dd619d09daf367dcd84 (diff) |
NewXstatusNotify: fixed typo in loading templates (#879)
Diffstat (limited to 'plugins/NewXstatusNotify')
-rw-r--r-- | plugins/NewXstatusNotify/src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewXstatusNotify/src/options.cpp b/plugins/NewXstatusNotify/src/options.cpp index 23e8dc1f8c..ffa1904a0a 100644 --- a/plugins/NewXstatusNotify/src/options.cpp +++ b/plugins/NewXstatusNotify/src/options.cpp @@ -112,8 +112,8 @@ void LoadOptions() void SaveTemplates()
{
- db_set_ws(0, MODULE, "TPopupChanged", templates.PopupXstatusChanged);
- db_set_ws(0, MODULE, "TPopupRemoved", templates.PopupXstatusRemoved);
+ db_set_ws(0, MODULE, "TPopupXChanged", templates.PopupXstatusChanged);
+ db_set_ws(0, MODULE, "TPopupXRemoved", templates.PopupXstatusRemoved);
db_set_ws(0, MODULE, "TPopupXMsgChanged", templates.PopupXMsgChanged);
db_set_ws(0, MODULE, "TPopupXMsgRemoved", templates.PopupXMsgRemoved);
|