diff options
Diffstat (limited to 'fxbarcode')
-rw-r--r-- | fxbarcode/BC_Utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxbarcode/BC_Utils.cpp b/fxbarcode/BC_Utils.cpp index 3c75406425..6a6ed3e0a4 100644 --- a/fxbarcode/BC_Utils.cpp +++ b/fxbarcode/BC_Utils.cpp @@ -19,7 +19,7 @@ bool BC_FX_ByteString_Replace(CFX_ByteString& dst, } dst.Delete(first, last - first); for (int32_t i = 0; i < count; i++) { - dst.Insert(0, c); + dst.InsertAtFront(c); } return true; } |