| Index: ui/base/x/x11_util.cc
|
| ===================================================================
|
| --- ui/base/x/x11_util.cc (revision 72586)
|
| +++ ui/base/x/x11_util.cc (working copy)
|
| @@ -441,13 +441,13 @@
|
| int format;
|
| unsigned long count;
|
| unsigned char *data = NULL;
|
| - if (!GetProperty(window,
|
| - "_NET_CLIENT_LIST_STACKING",
|
| - ~0L,
|
| - &type,
|
| - &format,
|
| - &count,
|
| - &data)) {
|
| + if (GetProperty(window,
|
| + "_NET_CLIENT_LIST_STACKING",
|
| + ~0L,
|
| + &type,
|
| + &format,
|
| + &count,
|
| + &data) != Success) {
|
| return false;
|
| }
|
|
|
|
|