diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-08 19:15:04 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-08 19:15:04 +0300 |
commit | 39a227d88a3bfaab32b18e4bb961948864085f11 (patch) | |
tree | 5a52ed2b69767eaaba1c6c03513a8de52010139d /plugins/SecureIM/src/commonheaders.cpp | |
parent | eebfe35f7b33e1d2d307369ce440e8c3239a79ac (diff) |
fixes #3859 (SecureIM: перевод не помещается)
Diffstat (limited to 'plugins/SecureIM/src/commonheaders.cpp')
-rw-r--r-- | plugins/SecureIM/src/commonheaders.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/SecureIM/src/commonheaders.cpp b/plugins/SecureIM/src/commonheaders.cpp index db6b01fe01..f94021d506 100644 --- a/plugins/SecureIM/src/commonheaders.cpp +++ b/plugins/SecureIM/src/commonheaders.cpp @@ -17,7 +17,7 @@ HANDLE g_IEC[1 + IEC_CNT*MODE_CNT]; int iBmpDepth;
BOOL bPGPloaded = false, bPGPkeyrings = false, bUseKeyrings = false, bPGPprivkey = false;
BOOL bGPGloaded = false, bGPGkeyrings = false, bSavePass = false;
-BOOL bSFT, bSOM, bASI, bMCD, bSCM, bDGP, bAIP, bNOL, bAAK, bMCM;
+BOOL bSFT, bSOM, bASI, bMCD, bSCM, bAIP, bNOL, bAAK, bMCM;
uint8_t bPGP, bGPG;
mir_cs localQueueMutex;
@@ -49,7 +49,6 @@ void GetFlags() bASI = g_plugin.getByte("asi", 0);
bMCD = g_plugin.getByte("mcd", 0);
bSCM = g_plugin.getByte("scm", 0);
- bDGP = g_plugin.getByte("dgp", 0);
bAIP = g_plugin.getByte("aip", 0);
bNOL = g_plugin.getByte("nol", 0);
bAAK = g_plugin.getByte("aak", 0);
@@ -63,7 +62,6 @@ void SetFlags() g_plugin.setByte("asi", bASI);
g_plugin.setByte("mcd", bMCD);
g_plugin.setByte("scm", bSCM);
- g_plugin.setByte("dgp", bDGP);
g_plugin.setByte("aip", bAIP);
g_plugin.setByte("nol", bNOL);
g_plugin.setByte("aak", bAAK);
|