diff options
| -rw-r--r-- | dicealias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dicealias.cpp b/dicealias.cpp index 0378867..50668a8 100644 --- a/dicealias.cpp +++ b/dicealias.cpp @@ -51,7 +51,7 @@ QString makeReplament(const QString& pattern, const QString& replacement, QStrin auto hasQuote= false; for(auto range : quotes) { - if(idxPattern < range.second && idxPattern > range.first) + if(idxPattern < range.second && idxPattern >= range.first) hasQuote= true; } |