diff options
author | George Hazan <ghazan@miranda.im> | 2022-03-09 16:01:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-03-09 16:01:32 +0300 |
commit | d387ed11456e40f36f359cb3aa9f74a54b8f369b (patch) | |
tree | 58b3c950a6f00ee6664e794ec4a385cc3b10cb34 /plugins/Db_autobackups/src/stdafx.h | |
parent | b5c43418ddb50192686929bac0a6b3190aa6b600 (diff) |
popup control moved from main menu to Options - Popups - Enabled items
Diffstat (limited to 'plugins/Db_autobackups/src/stdafx.h')
-rw-r--r-- | plugins/Db_autobackups/src/stdafx.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/Db_autobackups/src/stdafx.h b/plugins/Db_autobackups/src/stdafx.h index 9c84fc678c..f569f099bd 100644 --- a/plugins/Db_autobackups/src/stdafx.h +++ b/plugins/Db_autobackups/src/stdafx.h @@ -38,20 +38,20 @@ struct CMPlugin : public PLUGIN<CMPlugin> CMPlugin();
bool bCloudFilePresent = false;
- HANDLE hevBackup;
+ HANDLE hevBackup = nullptr;
wchar_t folder[MAX_PATH];
CMOption<uint8_t> backup_types;
- CMOption<uint16_t> period;
+ CMOption<uint16_t> period;
CMOption<uint8_t> period_type;
- CMOption<wchar_t*> file_mask;
- CMOption<uint16_t> num_backups;
+ CMOption<wchar_t*> file_mask;
+ CMOption<uint16_t> num_backups;
CMOption<uint8_t> disable_progress;
- CMOption<uint8_t> disable_popups;
+ CMOption<bool> bPopups;
CMOption<uint8_t> use_zip;
CMOption<uint8_t> backup_profile;
CMOption<uint8_t> use_cloudfile;
- CMOption<char*> cloudfile_service;
+ CMOption<char*> cloudfile_service;
int Load() override;
};
|