Commit 4fb48f3647715887884bab8c512cd9d413f9d364

Authored by Scott Klum
2 parents 01ba158a b722a73f

Merge branch 'master' of https://github.com/biometrics/openbr into fbi_ebts_updates

Showing 1 changed file with 2 additions and 2 deletions
openbr/plugins/gui.cpp
... ... @@ -253,7 +253,7 @@ public:
253 253 }
254 254 }
255 255 else {
256   - rects.removeLast();
  256 + rects.remove(rects.size()-1);
257 257 }
258 258 }
259 259 }
... ... @@ -265,7 +265,7 @@ public:
265 265 drawingRect = false;
266 266 else
267 267 {
268   - rects.removeLast();
  268 + rects.remove(rects.size()-1);
269 269 rectLabels.removeLast();
270 270 }
271 271 }
... ...