Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Unified Diff: remoting/host/continue_window_linux.cc

Issue 7569012: gtk: Use gtk_dialog_get_content_area() throughout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/input_window_dialog_gtk.cc ('k') | remoting/host/disconnect_window_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/continue_window_linux.cc
diff --git a/remoting/host/continue_window_linux.cc b/remoting/host/continue_window_linux.cc
index 92b90af168046fa877510d67ecc5860d71931746..2dcc67e8b3691f1a18cfad7bc4bf554ba53b1e70 100644
--- a/remoting/host/continue_window_linux.cc
+++ b/remoting/host/continue_window_linux.cc
@@ -62,7 +62,8 @@ void ContinueWindowLinux::CreateWindow() {
g_signal_connect(continue_window_, "response",
G_CALLBACK(OnResponseThunk), this);
- GtkWidget* content_area = GTK_DIALOG(continue_window_)->vbox;
+ GtkWidget* content_area =
+ gtk_dialog_get_content_area(GTK_DIALOG(continue_window_));
GtkWidget* text_label = gtk_label_new(kMessage);
gtk_label_set_line_wrap(GTK_LABEL(text_label), TRUE);
« no previous file with comments | « chrome/browser/ui/input_window_dialog_gtk.cc ('k') | remoting/host/disconnect_window_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698