]> Pileus Git - ~andy/gtk/commitdiff
docs: migrating-2to3: improve cross-reference
authorJavier Jardón <jjardon@gnome.org>
Fri, 18 Feb 2011 22:17:04 +0000 (22:17 +0000)
committerJavier Jardón <jjardon@gnome.org>
Fri, 18 Feb 2011 22:17:04 +0000 (22:17 +0000)
docs/reference/gtk/migrating-2to3.xml

index 0f186105c81111a77d09c5a9305afadc0a9b7c73..677fd3e340196dbe4d1213248505c7db249185b3 100644 (file)
@@ -935,7 +935,7 @@ AM_CONDITIONAL(BUILD_x11, [test "x$have_x11" = "xyes"])
       is available via the new gtk_widget_get_allocated_width() and
       gtk_widget_get_allocated_height() functions. It is not necessary to
       check for GTK_WIDGET_IS_DRAWABLE(), since GTK+ already does this check
-      before emitting the ::draw signal.
+      before emitting the #GtkWidget::draw signal.
     </para>
     <para>
       There are some special considerations for widgets with multiple windows.
@@ -954,7 +954,7 @@ AM_CONDITIONAL(BUILD_x11, [test "x$have_x11" = "xyes"])
         }
       ...
       </programlisting></informalexample>
-      In contrast, the ::draw signal handler may have to draw multiple
+      In contrast, the #GtkWidget::draw signal handler may have to draw multiple
       windows in one call. GTK+ has a convenience function
       gtk_cairo_should_draw_window() that can be used to find out if
       a window needs to be drawn. With that, the example above would look