diff options
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Platform.h b/include/Platform.h index 7e521d63b..53b1dfecc 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -377,6 +377,7 @@ private: WindowID list; WindowID scroller; int current; + void *pixhash; #endif int desiredVisibleRows; unsigned int maxItemCharacters; @@ -393,13 +394,14 @@ public: void SetVisibleRows(int rows); PRectangle GetDesiredRect(); void Clear(); - void Append(char *s); + void Append(char *s, int type = -1); int Length(); void Select(int n); int GetSelection(); int Find(const char *prefix); void GetValue(int n, char *value, int len); void Sort(); + void SetTypeXpm(int type, const char **xpm_data); void SetDoubleClickAction(CallBackAction action, void *data) { doubleClickAction = action; doubleClickActionData = data; |