diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 21:49:16 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-15 21:49:16 +0000 |
commit | 7eef58b5f8d3f9d30507761e7faf2a7b5e226285 (patch) | |
tree | f26cfc205078eb4d9d1384d096b299b3c9a37f24 /remoting | |
parent | 39666aacee1d65b914e44f3ffe9ee0b56a1cca84 (diff) | |
download | chromium_src-7eef58b5f8d3f9d30507761e7faf2a7b5e226285.zip chromium_src-7eef58b5f8d3f9d30507761e7faf2a7b5e226285.tar.gz chromium_src-7eef58b5f8d3f9d30507761e7faf2a7b5e226285.tar.bz2 |
The Disconnect and Continue windows should have the WS_EX_TOOLWINDOW style set to make sure they do not appear in the taskbar.
Review URL: https://chromiumcodereview.appspot.com/9700064
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127003 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/host/plugin/host_plugin.rc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/remoting/host/plugin/host_plugin.rc b/remoting/host/plugin/host_plugin.rc index 1ac0148..5ef6187 100644 --- a/remoting/host/plugin/host_plugin.rc +++ b/remoting/host/plugin/host_plugin.rc @@ -28,19 +28,19 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // TEXTINCLUDE
//
-1 TEXTINCLUDE
+1 TEXTINCLUDE
BEGIN
"host_plugin_resource.h\0"
END
-2 TEXTINCLUDE
+2 TEXTINCLUDE
BEGIN
"#include ""winres.h""\r\n"
"#include ""constants.h""\r\n"
"\0"
END
-3 TEXTINCLUDE
+3 TEXTINCLUDE
BEGIN
"\r#include ""remoting/host/plugin/host_plugin_version.rc""\0"
END
@@ -55,7 +55,7 @@ END IDD_DISCONNECT DIALOGEX 0, 0, 145, 24
STYLE DS_SETFONT | WS_POPUP
-EXSTYLE WS_EX_TOPMOST
+EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW
FONT 9, "Microsoft Sans Serif", 400, 0, 0x0
BEGIN
DEFPUSHBUTTON "kDisconnectButton",IDC_DISCONNECT,68,5,70,14
@@ -66,7 +66,7 @@ END IDD_CONTINUE DIALOGEX 0, 0, 221, 58
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION
-EXSTYLE WS_EX_TOPMOST
+EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW
CAPTION "kTitle"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
@@ -82,7 +82,7 @@ END //
#ifdef APSTUDIO_INVOKED
-GUIDELINES DESIGNINFO
+GUIDELINES DESIGNINFO
BEGIN
IDD_DISCONNECT, DIALOG
BEGIN
|