diff options
| author | George Hazan <ghazan@miranda.im> | 2022-06-13 15:09:41 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2022-06-13 15:09:41 +0300 |
| commit | 346ae348ae7ee5a594c9fcd17114ae949c1ce201 (patch) | |
| tree | 1e42c52d59515646d603a9593ce23d094a5fde20 /plugins/MirFox/src | |
| parent | 7524e8b875b924bb3cee484e90f6cc6bc01515a4 (diff) | |
Popup+: fix for a madness with default popup class values
Diffstat (limited to 'plugins/MirFox/src')
| -rw-r--r-- | plugins/MirFox/src/MirandaInterface.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/MirFox/src/MirandaInterface.cpp b/plugins/MirFox/src/MirandaInterface.cpp index bb5242f90a..94e2755126 100644 --- a/plugins/MirFox/src/MirandaInterface.cpp +++ b/plugins/MirFox/src/MirandaInterface.cpp @@ -88,8 +88,7 @@ static int __cdecl onContactSettingChanged(WPARAM hContact, LPARAM lParam) static int onModulesLoaded(WPARAM, LPARAM)
{
//init popup classes
- POPUPCLASS puc = { 0 };
- puc.cbSize = sizeof(puc);
+ POPUPCLASS puc = {};
puc.flags = PCF_UNICODE;
puc.pszName = "MirFox_Notify";
|
