summaryrefslogtreecommitdiffstats
path: root/Panel.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-05 23:42:55 +0100
committerBenBE <BenBE@geshi.org>2021-01-11 20:12:34 +0100
commitd72b0a682ecad0a8d5793022733447e855a61798 (patch)
treed9bc511bb716030fd73675bd3474e5a043636d73 /Panel.c
parent1b2d48bc9aa93254c48d10bb34acde9596b526b9 (diff)
Mark several non-modified pointer variables const
Diffstat (limited to 'Panel.c')
-rw-r--r--Panel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Panel.c b/Panel.c
index 5d103753..986a9895 100644
--- a/Panel.c
+++ b/Panel.c
@@ -172,13 +172,13 @@ void Panel_moveSelectedDown(Panel* this) {
}
}
-int Panel_getSelectedIndex(Panel* this) {
+int Panel_getSelectedIndex(const Panel* this) {
assert (this != NULL);
return this->selected;
}
-int Panel_size(Panel* this) {
+int Panel_size(const Panel* this) {
assert (this != NULL);
return Vector_size(this->items);
@@ -269,7 +269,7 @@ void Panel_draw(Panel* this, bool force_redraw, bool focus, bool highlightSelect
if (this->needsRedraw || force_redraw) {
int line = 0;
for (int i = first; line < h && i < upTo; i++) {
- Object* itemObj = Vector_get(this->items, i);
+ const Object* itemObj = Vector_get(this->items, i);
RichString_begin(item);
Object_display(itemObj, &item);
int itemLen = RichString_sizeVal(item);
@@ -296,11 +296,11 @@ void Panel_draw(Panel* this, bool force_redraw, bool focus, bool highlightSelect
}
} else {
- Object* oldObj = Vector_get(this->items, this->oldSelected);
+ const Object* oldObj = Vector_get(this->items, this->oldSelected);
RichString_begin(old);
Object_display(oldObj, &old);
int oldLen = RichString_sizeVal(old);
- Object* newObj = Vector_get(this->items, this->selected);
+ const Object* newObj = Vector_get(this->items, this->selected);
RichString_begin(new);
Object_display(newObj, &new);
int newLen = RichString_sizeVal(new);

© 2014-2024 Faster IT GmbH | imprint | privacy policy