update translations
This commit is contained in:
parent
9638cbdd3f
commit
53085e36a3
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -213,6 +213,8 @@ void SynEdit::setCaretXYEx(bool CallEnsureCursorPos, BufferCoord value)
|
|||
value.Line = 1;
|
||||
if (!mOptions.testFlag(SynEditorOption::eoScrollPastEol)) {
|
||||
nMaxX = 1;
|
||||
} else {
|
||||
nMaxX = mLines->getString(value.Line-1).length()+1;
|
||||
}
|
||||
} else {
|
||||
nMaxX = mLines->getString(value.Line-1).length()+1;
|
||||
|
@ -3411,7 +3413,7 @@ QString SynEdit::substringByColumns(const QString &s, int startColumn, int &colL
|
|||
int len = s.length();
|
||||
int columns = 0;
|
||||
int i = 0;
|
||||
int oldColumns;
|
||||
int oldColumns=0;
|
||||
while (columns < startColumn) {
|
||||
oldColumns = columns;
|
||||
if (i>=len)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include <QStringList>
|
||||
|
||||
#define DEVCPP_VERSION "0.7.8"
|
||||
#define DEVCPP_VERSION "0.7.9"
|
||||
|
||||
#define APP_SETTSINGS_FILENAME "redpandacpp.ini"
|
||||
#ifdef Q_OS_WIN
|
||||
|
|
Loading…
Reference in New Issue