diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-11-19 21:29:01 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-11-19 21:29:01 +0000 |
commit | eb62e51f57fee452aae04366335059b01c38c1cc (patch) | |
tree | 61f84e94c712178cda76e3c9017f56351d45a8aa /plugins/NewsAggregator/Src | |
parent | 1afd60a32d7b838cc3e997c5a10ed87ac7064b58 (diff) |
NewsAggregator:
-Fixed Message format
git-svn-id: http://svn.miranda-ng.org/main/trunk@11023 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewsAggregator/Src')
-rw-r--r-- | plugins/NewsAggregator/Src/Options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewsAggregator/Src/Options.cpp b/plugins/NewsAggregator/Src/Options.cpp index 2ecbcea2e8..8a0293c4ba 100644 --- a/plugins/NewsAggregator/Src/Options.cpp +++ b/plugins/NewsAggregator/Src/Options.cpp @@ -333,7 +333,7 @@ INT_PTR CALLBACK DlgProcChangeFeedMenu(HWND hwndDlg, UINT msg, WPARAM wParam, LP SetDlgItemInt(hwndDlg, IDC_CHECKTIME, db_get_dw(hContact, MODULE, "UpdateTime", DEFAULT_UPDATE_TIME), TRUE);
- TCHAR *ptszMsgFormat = db_get_tsa(hContact, MODULE, "URL");
+ TCHAR *ptszMsgFormat = db_get_tsa(hContact, MODULE, "MsgFormat");
if (ptszMsgFormat) {
SetDlgItemText(hwndDlg, IDC_TAGSEDIT, ptszMsgFormat);
mir_free(ptszMsgFormat);
|