~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to sdk/wxscintilla/src/scintilla/src/Decoration.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-07-29 19:42:47 UTC
  • mfrom: (1.1.9 upstream) (18.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100729194247-cuibfk03wog33nxq
Tags: 2.6.0.4189~dfsg-1
* New upstream release.
* Bump Standards.
* Refresh patches.
* Add license information about files under ./Debugger/

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        ~DecorationList();
41
41
 
42
42
        void SetCurrentIndicator(int indicator);
43
 
        int GetCurrentIndicator() { return currentIndicator; }
 
43
        int GetCurrentIndicator() const { return currentIndicator; }
44
44
 
45
45
        void SetCurrentValue(int value);
46
 
        int GetCurrentValue() { return currentValue; }
 
46
        int GetCurrentValue() const { return currentValue; }
47
47
 
48
48
        // Returns true if some values may have changed
49
49
        bool FillRange(int &position, int value, int &fillLength);