haiku: Patched to compile.

This commit is contained in:
Ryan C. Gordon 2016-09-29 23:15:56 -04:00
parent f2fcd324c5
commit f10db4071d
1 changed files with 2 additions and 2 deletions

View File

@ -578,9 +578,9 @@ private:
return;
}
if (bEnabled) {
SetFlags(GetFlags() & ~(B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
SetFlags(Flags() & ~(B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
} else {
SetFlags(GetFlags() | (B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
SetFlags(Flags() | (B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
}
}