summaryrefslogtreecommitdiff
path: root/ui/builders/join.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-03-23 14:21:12 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2025-03-23 14:21:12 +0000
commit035299f23a9207bb521b19e2f77154c276cf3033 (patch)
tree33d24274a6eb716d1d92f9bff074c3e81b8fb71e /ui/builders/join.cpp
parentOther objects support in operator= (diff)
downloadilt-035299f23a9207bb521b19e2f77154c276cf3033.tar.bz2
ilt-035299f23a9207bb521b19e2f77154c276cf3033.tar.xz
ilt-035299f23a9207bb521b19e2f77154c276cf3033.zip
Other objects support in removeAll/clear
removeAll requires a type that is one of Others, clear clears everything regardless of type.
Diffstat (limited to 'ui/builders/join.cpp')
-rw-r--r--ui/builders/join.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/builders/join.cpp b/ui/builders/join.cpp
index 161b081..f6cbce5 100644
--- a/ui/builders/join.cpp
+++ b/ui/builders/join.cpp
@@ -18,7 +18,7 @@ BuilderJoin::move(Network * network, const GeoData *, const SDL_MouseMotionEvent
candidateLinks = network->candidateJoins(p1->pos, p->pos);
}
else {
- candidateLinks.removeAll();
+ candidateLinks.clear();
}
}
}
@@ -33,7 +33,7 @@ BuilderJoin::click(
if (p1) {
create(network, geoData, p1, p);
p1.reset();
- candidateLinks.removeAll();
+ candidateLinks.clear();
}
else {
p1 = p;