Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6179


Ignore:
Timestamp:
Nov 29, 2009, 9:27:22 PM (14 years ago)
Author:
rgrieder
Message:

Fixed Linux build and removed a warning

Location:
code/branches/presentation2/src/libraries/core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/libraries/core/IOConsole.cc

    r6178 r6179  
    404404        return !this->statusLineWidths_.empty()
    405405             && this->terminalWidth_  >= this->statusLineMaxWidth_
    406              && this->terminalHeight_ >= (this->minOutputLines_ + this->statusLineWidths_.size());
     406             && this->terminalHeight_ >= this->minOutputLines_ + (int)this->statusLineWidths_.size();
    407407    }
    408408
  • code/branches/presentation2/src/libraries/core/IOConsole.h

    r6178 r6179  
    9494        std::vector<int>        statusLineWidths_;
    9595        int                     statusLineMaxWidth_;
    96         static const            minOutputLines_ = 3;
     96        static const int        minOutputLines_ = 3;
    9797        termios*                originalTerminalSettings_;
    9898
Note: See TracChangeset for help on using the changeset viewer.