diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-05-27 20:07:27 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-05-27 20:07:27 +0000 |
commit | 109c0eb96c596208e0ab56f02e975ce584c43c2d (patch) | |
tree | feaa70104fff2394d7a2272ec1a5b8fb7a81daac /plugins | |
parent | da5d2a2d0821241ea71f45b1e0faf627da1caf90 (diff) |
TabSRMM:
-Fixed opening global message options
git-svn-id: http://svn.miranda-ng.org/main/trunk@13862 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TabSRMM/src/msgdlgutils.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/TabSRMM/src/msgdlgutils.cpp b/plugins/TabSRMM/src/msgdlgutils.cpp index 9c642a0db2..5846f432d1 100644 --- a/plugins/TabSRMM/src/msgdlgutils.cpp +++ b/plugins/TabSRMM/src/msgdlgutils.cpp @@ -400,9 +400,10 @@ int TSAPI MsgWindowMenuHandler(TWindowData *dat, int selection, int menuId) switch (selection) {
case ID_MESSAGELOGSETTINGS_GLOBAL:
{
- OPENOPTIONSDIALOG ood = { sizeof(ood) };
- ood.pszPage = "Message Sessions";
- db_set_b(0, SRMSGMOD_T, "opage", 3); // force 3th tab to appear
+ OPENOPTIONSDIALOG ood = { sizeof(ood) };
+ ood.pszPage = "Message sessions";
+ ood.pszGroup = NULL;
+ ood.pszTab = "Message log";
Options_Open(&ood);
}
return 1;
|