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

Unified Diff: remoting/host/disconnect_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 | « remoting/host/continue_window_linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/disconnect_window_linux.cc
diff --git a/remoting/host/disconnect_window_linux.cc b/remoting/host/disconnect_window_linux.cc
index f8a27d3574e95d402c31c2a0cd1e1aac1ffc10d3..bfd2e1c5708f7ecfbea8d1cc680f8bb890565b50 100644
--- a/remoting/host/disconnect_window_linux.cc
+++ b/remoting/host/disconnect_window_linux.cc
@@ -64,7 +64,8 @@ void DisconnectWindowLinux::CreateWindow() {
g_signal_connect(disconnect_window_, "response",
G_CALLBACK(OnResponseThunk), this);
- GtkWidget* content_area = GTK_DIALOG(disconnect_window_)->vbox;
+ GtkWidget* content_area =
+ gtk_dialog_get_content_area(GTK_DIALOG(disconnect_window_));
GtkWidget* username_row = gtk_hbox_new(FALSE, 0);
// TODO(lambroslambrou): Replace the magic number with an appropriate
« no previous file with comments | « remoting/host/continue_window_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698