aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/WindowAccessor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-18 13:23:58 +0000
committernyamatongwe <unknown>2000-04-18 13:23:58 +0000
commit3a1d36a7e56c077a1cf97e45021081a94cb5ec7b (patch)
tree3d5de7ce317ba23bed64ef26edd0121179e307e4 /include/WindowAccessor.h
parent67fcad1cbbb833bce955e0f3cb09f844ff2e5abb (diff)
downloadscintilla-mirror-3a1d36a7e56c077a1cf97e45021081a94cb5ec7b.tar.gz
Removed use of PropSet in Accessor to avoid linkage.
Added indenting and horizontal scroll bar messages.
Diffstat (limited to 'include/WindowAccessor.h')
-rw-r--r--include/WindowAccessor.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/WindowAccessor.h b/include/WindowAccessor.h
index 567c47894..89a542e82 100644
--- a/include/WindowAccessor.h
+++ b/include/WindowAccessor.h
@@ -33,7 +33,9 @@ public:
void Flush();
int GetLineState(int line);
int SetLineState(int line, int state);
- PropSet &GetPropSet() { return props; }
+ int GetPropertyInt(const char *key, int defaultValue=0) {
+ return props.GetInt(key, defaultValue);
+ }
void StartAt(unsigned int start, char chMask=31);
void SetFlags(char chFlags_, char chWhile_) {chFlags = chFlags_; chWhile = chWhile_; };