~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to scintilla/AutoComplete.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-08-07 03:23:12 UTC
  • mfrom: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20100807032312-ot70ac9d50cn79we
Tags: upstream-0.19
ImportĀ upstreamĀ versionĀ 0.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
#include "Platform.h"
13
13
 
14
 
#include "PropSet.h"
 
14
#include "CharClassify.h"
15
15
#include "AutoComplete.h"
16
16
 
17
17
#ifdef SCI_NAMESPACE
43
43
        }
44
44
}
45
45
 
46
 
bool AutoComplete::Active() {
 
46
bool AutoComplete::Active() const {
47
47
        return active;
48
48
}
49
49
 
50
 
void AutoComplete::Start(Window &parent, int ctrlID, 
51
 
        int position, Point location, int startLen_, 
 
50
void AutoComplete::Start(Window &parent, int ctrlID,
 
51
        int position, Point location, int startLen_,
52
52
        int lineHeight, bool unicodeMode) {
53
53
        if (active) {
54
54
                Cancel();
82
82
        separator = separator_;
83
83
}
84
84
 
85
 
char AutoComplete::GetSeparator() {
 
85
char AutoComplete::GetSeparator() const {
86
86
        return separator;
87
87
}
88
88
 
90
90
        typesep = separator_;
91
91
}
92
92
 
93
 
char AutoComplete::GetTypesep() {
 
93
char AutoComplete::GetTypesep() const {
94
94
        return typesep;
95
95
}
96
96