| Index: chrome/browser/gtk/gtk_chrome_link_button.cc
|
| diff --git a/chrome/browser/gtk/gtk_chrome_link_button.cc b/chrome/browser/gtk/gtk_chrome_link_button.cc
|
| index fde471a81a6b31dd4befcf6856325362820c4c1f..defb188fbbffe7a4ce87e1a4c66b3a57ddc103de 100644
|
| --- a/chrome/browser/gtk/gtk_chrome_link_button.cc
|
| +++ b/chrome/browser/gtk/gtk_chrome_link_button.cc
|
| @@ -7,6 +7,7 @@
|
| #include <stdlib.h>
|
|
|
| #include "base/logging.h"
|
| +#include "chrome/common/gtk_util.h"
|
|
|
| static const gchar* kLinkMarkup = "<u><span color=\"%s\">%s</span></u>";
|
|
|
| @@ -182,7 +183,7 @@ static void gtk_chrome_link_button_init(GtkChromeLinkButton* button) {
|
| button->is_blue = TRUE;
|
| button->native_markup = NULL;
|
| button->using_native_theme = TRUE;
|
| - button->hand_cursor = gdk_cursor_new(GDK_HAND2);
|
| + button->hand_cursor = gtk_util::GetCursor(GDK_HAND2);
|
| button->text = NULL;
|
|
|
| gtk_container_add(GTK_CONTAINER(button), button->label);
|
|
|