From c22a22fd36112cf3d061172f3ca569f09cafea44 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Thu, 3 Jul 2014 08:21:13 +0000 Subject: more correct warning git-svn-id: http://svn.miranda-ng.org/main/trunk@9653 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Db3x_mmap/src/dbheaders.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Db3x_mmap') diff --git a/plugins/Db3x_mmap/src/dbheaders.cpp b/plugins/Db3x_mmap/src/dbheaders.cpp index 4a0eceb2b2..5fc2b534c9 100644 --- a/plugins/Db3x_mmap/src/dbheaders.cpp +++ b/plugins/Db3x_mmap/src/dbheaders.cpp @@ -55,7 +55,7 @@ int CDb3Mmap::CreateDbHeaders(const DBSignature& _sign) ///////////////////////////////////////////////////////////////////////////////////////// static TCHAR tszOldHeaders[] = - LPGENT("This profile is too old to be updated with PluginUpdater, your database must be converted first.\n\nPlease press Yes to read further instructions or No to cancel"); + LPGENT("This profile is too old to be updated with PluginUpdater, your database must be converted first.\n\nWould you like to read how to fix this?"); int CDb3Mmap::CheckDbHeaders() { @@ -66,7 +66,7 @@ int CDb3Mmap::CheckDbHeaders() !memcmp(&m_dbHeader.signature, &dbSignatureSA, sizeof(m_dbHeader.signature)) || !memcmp(&m_dbHeader.signature, &dbSignatureSD, sizeof(m_dbHeader.signature))) { - if (IDYES == MessageBox(NULL, TranslateTS(tszOldHeaders), TranslateT("Obsolete database format"), MB_YESNO | MB_ICONINFORMATION)) { + if (IDYES == MessageBox(NULL, TranslateTS(tszOldHeaders), TranslateT("Obsolete database format"), MB_YESNO | MB_ICONWARNING)) { TCHAR tszCurPath[MAX_PATH]; GetModuleFileName(NULL, tszCurPath, SIZEOF(tszCurPath)); TCHAR *p = _tcsrchr(tszCurPath, '\\'); -- cgit v1.2.3