private bool FixDuplicateUuids(PwDatabase pd, IOConnectionInfo ioc) { if(pd == null) { Debug.Assert(false); return false; } if(!pd.HasDuplicateUuids()) return false; string str = string.Empty; if(ioc != null) { string strFile = ioc.GetDisplayName(); if(!string.IsNullOrEmpty(strFile)) str += strFile + MessageService.NewParagraph; } str += KPRes.UuidDupInDb + MessageService.NewParagraph + KPRes.CorruptionByExt + MessageService.NewParagraph + KPRes.UuidFix; if(VistaTaskDialog.ShowMessageBoxEx(str, null, PwDefs.ShortProductName, VtdIcon.Warning, null, KPRes.RepairCmd, (int)DialogResult.Cancel, null, 0) < 0) MessageService.ShowWarning(str); pd.FixDuplicateUuids(); pd.Modified = true; return true; }