Exemplo n.º 1
0
        public static void SaveOTP(KPOTP myOTP, PwEntry pe)
        {
            OTPHandler_Base h = GetOTPHandler(pe);

            h.SaveOTP(myOTP, pe);
            myOTP.ResetSanitizedChange();
            Program.MainForm.RefreshEntriesList();
            bool bModified = (h is OTPHandler_DB) ? (h as OTPHandler_DB).DB == Program.MainForm.ActiveDatabase : true;

            Program.MainForm.UpdateUI(false, null, false, null, true, null, bModified);
        }
Exemplo n.º 2
0
        public static void SaveOTP(KPOTP myOTP, PwEntry pe)
        {
            OTPHandler_Base h = GetOTPHandler(pe);

            h.SaveOTP(myOTP, pe);
            myOTP.ResetSanitizedChange();
            bool bModified = (h is OTPHandler_DB) ? (h as OTPHandler_DB).DB == Program.MainForm.ActiveDatabase : true;

            System.Windows.Forms.ListView lv = (System.Windows.Forms.ListView)Tools.GetControl("m_lvEntries");
            Tools.RefreshEntriesList(bModified);
        }