diff options
author | George Hazan <george.hazan@gmail.com> | 2012-12-01 19:42:19 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-12-01 19:42:19 +0000 |
commit | 7300094417302d82aa4f3f6e469f91d8facf4f26 (patch) | |
tree | e2effcdc0568876d9327206e68838172bac51dfc /plugins/SpellChecker/src/options.h | |
parent | 464d30983285ab816de7e2ac3d72fe5c4a9544e6 (diff) |
- mir_icons.h removed from project;
- option "Autp chamge locale" turned on by default;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2597 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker/src/options.h')
-rw-r--r-- | plugins/SpellChecker/src/options.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/plugins/SpellChecker/src/options.h b/plugins/SpellChecker/src/options.h index 70710fdb9d..073864cdd7 100644 --- a/plugins/SpellChecker/src/options.h +++ b/plugins/SpellChecker/src/options.h @@ -21,7 +21,6 @@ Boston, MA 02111-1307, USA. #ifndef __OPTIONS_H__
# define __OPTIONS_H__
-
#define POPUP_ACTION_DONOTHING 0
#define POPUP_ACTION_CLOSEPOPUP 1
#define POPUP_ACTION_OPENHISTORY 2
@@ -30,8 +29,8 @@ Boston, MA 02111-1307, USA. #define POPUP_DELAY_CUSTOM 1
#define POPUP_DELAY_PERMANENT 2
-
-struct Options {
+struct Options
+{
TCHAR default_language[32];
BOOL auto_replace_dict;
BOOL auto_replace_user;
@@ -51,18 +50,14 @@ struct Options { extern Options opts;
-
// Initializations needed by options
void InitOptions();
// Deinitializations needed by options
void DeInitOptions();
-
// Loads the options from DB
// It don't need to be called, except in some rare cases
void LoadOptions();
-
-
#endif // __OPTIONS_H__
|