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

Unified Diff: remoting/host/continue_window_linux.cc

Issue 2665203005: Gtk3: Fix gn_all compile (Closed)
Patch Set: Address sergeyu@'s comments Created 3 years, 10 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 | « no previous file | 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 af1e796d234f0696612da0e1565c90d6eea994be..3bc85424fcb27ea7c78c0ba3d85c7c5fb7d5b0f3 100644
--- a/remoting/host/continue_window_linux.cc
+++ b/remoting/host/continue_window_linux.cc
@@ -70,10 +70,14 @@ void ContinueWindowGtk::CreateWindow() {
DCHECK(CalledOnValidThread());
DCHECK(!continue_window_);
+ GtkDialogFlags flags = GTK_DIALOG_MODAL;
+#if GTK_MAJOR_VERSION == 2
+ flags = static_cast<GtkDialogFlags>(flags | GTK_DIALOG_NO_SEPARATOR);
+#endif
continue_window_ = gtk_dialog_new_with_buttons(
l10n_util::GetStringUTF8(IDS_PRODUCT_NAME).c_str(),
nullptr,
- static_cast<GtkDialogFlags>(GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR),
+ flags,
l10n_util::GetStringUTF8(IDS_STOP_SHARING_BUTTON).c_str(),
GTK_RESPONSE_CANCEL,
l10n_util::GetStringUTF8(IDS_CONTINUE_BUTTON).c_str(),
« no previous file with comments | « no previous file | remoting/host/disconnect_window_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698