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

Unified Diff: printing/backend/win_helper.cc

Issue 170013002: Removed unnecessary comparison checking bits in DEVMODE::dmFields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | « printing/backend/print_backend_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/backend/win_helper.cc
diff --git a/printing/backend/win_helper.cc b/printing/backend/win_helper.cc
index 6710c2c981285c7d59e536239ed66fcceede8442..cfc1a5821528db9ee598049526b97291663f68e8 100644
--- a/printing/backend/win_helper.cc
+++ b/printing/backend/win_helper.cc
@@ -432,7 +432,7 @@ scoped_ptr<DEVMODE[]> CreateDevModeWithColor(HANDLE printer,
bool color) {
scoped_ptr<DEVMODE[]> default = CreateDevMode(printer, NULL);
if (default && (default.get()->dmFields & DM_COLOR) &&
- (default.get()->dmColor == DMCOLOR_COLOR) == color) {
+ ((default.get()->dmColor == DMCOLOR_COLOR) == color)) {
return default.Pass();
}
« no previous file with comments | « printing/backend/print_backend_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698