Kaydet (Commit) 4f1dabfd authored tarafından Thomas Arnhold's avatar Thomas Arnhold

warning C4800: 'int' : forcing value to bool 'true' or 'false'

Change-Id: Ic438fe098f80e96dd4679dda6e5de93a1ba9dc6a
üst 0842a270
...@@ -285,8 +285,8 @@ public: ...@@ -285,8 +285,8 @@ public:
SCCOL GetFixPosX() const { return pThisTab->nFixPosX; } SCCOL GetFixPosX() const { return pThisTab->nFixPosX; }
SCROW GetFixPosY() const { return pThisTab->nFixPosY; } SCROW GetFixPosY() const { return pThisTab->nFixPosY; }
bool IsPagebreakMode() const { return bPagebreak; } bool IsPagebreakMode() const { return bPagebreak; }
bool IsPasteMode() const { return nPasteFlags & SC_PASTE_MODE; } bool IsPasteMode() const { return (nPasteFlags & SC_PASTE_MODE) != 0; }
bool ShowPasteSource() const { return nPasteFlags & SC_PASTE_BORDER; } bool ShowPasteSource() const { return (nPasteFlags & SC_PASTE_BORDER) != 0; }
void SetPosX( ScHSplitPos eWhich, SCCOL nNewPosX ); void SetPosX( ScHSplitPos eWhich, SCCOL nNewPosX );
void SetPosY( ScVSplitPos eWhich, SCROW nNewPosY ); void SetPosY( ScVSplitPos eWhich, SCROW nNewPosY );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment