From: <dat...@us...> - 2006-11-13 16:14:37
|
Revision: 17714 http://svn.sourceforge.net/gaim/?rev=17714&view=rev Author: datallah Date: 2006-11-09 12:21:13 -0800 (Thu, 09 Nov 2006) Log Message: ----------- Also print the error to the console. Modified Paths: -------------- trunk/gtk/win32/win_gaim.c Modified: trunk/gtk/win32/win_gaim.c =================================================================== --- trunk/gtk/win32/win_gaim.c 2006-11-09 20:13:26 UTC (rev 17713) +++ trunk/gtk/win32/win_gaim.c 2006-11-09 20:21:13 UTC (rev 17714) @@ -557,6 +557,7 @@ snprintf(errbuf, 512, "Error getting module filename.\nError: (%u) %s", (UINT) dw, err_msg); + printf(errbuf); MessageBox(NULL, errbuf, NULL, MB_OK | MB_TOPMOST); } @@ -587,6 +588,7 @@ (UINT) dw, err_msg, mod_not_found ? "\n" : "", mod_not_found ? "This probably means that GTK+ can't be found." : ""); + printf(errbuf); MessageBox(NULL, errbuf, TEXT("Error"), MB_OK | MB_TOPMOST); return 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |