# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1321628966 0 # Node ID 2f5e54b0c5c4f83f3f589dbf3075453cdf9c2b85 # Parent 46c3bcd25b53cf4dc025e3151b499d74b94ee8ca dw_debug() lines in dw_html_new() should end with a newline. diff -r 46c3bcd25b53 -r 2f5e54b0c5c4 gtk/dw.c --- a/gtk/dw.c Fri Nov 18 14:56:25 2011 +0000 +++ b/gtk/dw.c Fri Nov 18 15:09:26 2011 +0000 @@ -12281,7 +12281,7 @@ #ifdef USE_GTKMOZEMBED if (!_gtk_moz_embed_new) { - dw_debug( "HTML widget not available; you do not have access to gtkmozembed." ); + dw_debug( "HTML widget not available; you do not have access to gtkmozembed.\n" ); } else { @@ -12296,7 +12296,7 @@ #elif defined(USE_LIBGTKHTML2) if ( !_html_document_new ) { - dw_debug( "HTML widget not available; you do not have access to libgtkhtml-2." ); + dw_debug( "HTML widget not available; you do not have access to libgtkhtml-2.\n" ); } else { @@ -12314,7 +12314,7 @@ #elif defined(USE_WEBKIT) if (!_webkit_web_view_open) { - dw_debug( "HTML widget not available; you do not have access to webkit." ); + dw_debug( "HTML widget not available; you do not have access to webkit.\n" ); } else { @@ -12333,7 +12333,7 @@ gtk_widget_show(widget); } #else - dw_debug( "HTML widget not available; you do not have access to gtkmozembed, webkit nor libgtkhtml-2.", 0); + dw_debug( "HTML widget not available; you do not have access to gtkmozembed, webkit nor libgtkhtml-2.\n" ); #endif DW_MUTEX_UNLOCK; return widget; diff -r 46c3bcd25b53 -r 2f5e54b0c5c4 gtk3/dw.c --- a/gtk3/dw.c Fri Nov 18 14:56:25 2011 +0000 +++ b/gtk3/dw.c Fri Nov 18 15:09:26 2011 +0000 @@ -10138,7 +10138,7 @@ #ifdef USE_WEBKIT if (!_webkit_web_view_open) { - dw_debug( "HTML widget not available; you do not have access to webkit." ); + dw_debug( "HTML widget not available; you do not have access to webkit.\n" ); } else { @@ -10154,7 +10154,7 @@ } gtk_widget_show(widget); #else - dw_debug( "HTML widget not available; you do not have access to webkit." ); + dw_debug( "HTML widget not available; you do not have access to webkit.\n" ); #endif DW_MUTEX_UNLOCK; return widget; diff -r 46c3bcd25b53 -r 2f5e54b0c5c4 os2/dw.c --- a/os2/dw.c Fri Nov 18 14:56:25 2011 +0000 +++ b/os2/dw.c Fri Nov 18 15:09:26 2011 +0000 @@ -10736,7 +10736,7 @@ HWND API dw_html_new(unsigned long id) { id = id; - dw_debug("HTML widget not available; OS/2 currently does not support it."); + dw_debug("HTML widget not available; OS/2 currently does not support it.\n"); return 0; } diff -r 46c3bcd25b53 -r 2f5e54b0c5c4 win/dw.c --- a/win/dw.c Fri Nov 18 14:56:25 2011 +0000 +++ b/win/dw.c Fri Nov 18 15:09:26 2011 +0000 @@ -4737,7 +4737,7 @@ DWInstance, NULL); #else - dw_debug("HTML widget not available; Support not enabled in this build."); + dw_debug("HTML widget not available; Support not enabled in this build.\n"); return 0; #endif }