diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-09-24 20:33:28 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-09-24 20:33:28 +0000 |
commit | 5ef7edee2a5d7eae4bb110e497d2e63b633348c8 (patch) | |
tree | 33ade0a35721a3f056d313e6cb3d5347b9b117aa /protocols/Quotes/CurrencyConverter.cpp | |
parent | af1c7bfc0cd0f76570e364dbb57cf447052c1ed5 (diff) |
Quotes:
fixed crash on start
git-svn-id: http://svn.miranda-ng.org/main/trunk@1643 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Quotes/CurrencyConverter.cpp')
-rw-r--r-- | protocols/Quotes/CurrencyConverter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Quotes/CurrencyConverter.cpp b/protocols/Quotes/CurrencyConverter.cpp index 0e04d2562e..7124677567 100644 --- a/protocols/Quotes/CurrencyConverter.cpp +++ b/protocols/Quotes/CurrencyConverter.cpp @@ -302,7 +302,7 @@ INT_PTR QuotesMenu_CurrencyConverter(WPARAM wp,LPARAM lp) }
else
{
- CreateDialogParam(CModuleInfo::GetModuleHandle(), MAKEINTRESOURCE(IDD_CURRENCY_CONVERTER), NULL, CurrencyConverterDlgProc, 0);
+ CreateDialogParam(g_hInstance, MAKEINTRESOURCE(IDD_CURRENCY_CONVERTER), NULL, CurrencyConverterDlgProc, 0);
}
return 0;
|