changeset 1358:2f5e54b0c5c4

dw_debug() lines in dw_html_new() should end with a newline.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 18 Nov 2011 15:09:26 +0000
parents 46c3bcd25b53
children c98542f7ccdf
files gtk/dw.c gtk3/dw.c os2/dw.c win/dw.c
diffstat 4 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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;
--- 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;
 }
 
--- 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
 }