diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-02-05 16:20:19 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-02-05 16:20:19 +0000 |
commit | a9a7eacedee12d0121e20d96530cb7183735c242 (patch) | |
tree | d889c2788c753e60ee01df5f4c307d2422387f6d /plugins/Ping/src/pingthread.cpp | |
parent | 8abfc9c62ea915190680fc590544bc3bbfe66682 (diff) |
Ping: Fixed double main menu
git-svn-id: http://svn.miranda-ng.org/main/trunk@8044 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Ping/src/pingthread.cpp')
-rw-r--r-- | plugins/Ping/src/pingthread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Ping/src/pingthread.cpp b/plugins/Ping/src/pingthread.cpp index 283f407934..72a8f2bfa6 100644 --- a/plugins/Ping/src/pingthread.cpp +++ b/plugins/Ping/src/pingthread.cpp @@ -751,7 +751,7 @@ LRESULT CALLBACK FrameWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPar OPENOPTIONSDIALOG oop = {0};
oop.cbSize = sizeof(oop);
oop.pszGroup = "Network";
- oop.pszPage = "PING";
+ oop.pszPage = "Ping";
oop.pszTab = "Settings";
Options_Open(&oop);
}
@@ -761,7 +761,7 @@ LRESULT CALLBACK FrameWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPar OPENOPTIONSDIALOG oop = {0};
oop.cbSize = sizeof(oop);
oop.pszGroup = "Network";
- oop.pszPage = "PING";
+ oop.pszPage = "Ping";
oop.pszTab = "Hosts";
Options_Open(&oop);
}
|