Skip to content

Commit 852faf6

Browse files
committed
Fixed incorrect display of SQL calltips containing non-US-ASCII characters
There is a further problem when the calltip is displayed after clicking one of the arrows for overloaded functions. This was first reported in sqlitebrowser#1107 (Russian) and sqlitebrowser#1206 (Korean). The subcase has been reported in PR sqlitebrowser#2424. Patch reported in the QScintilla list, so there is no need to keep a new patch. It is assumed to come in new QScintilla versions.
1 parent a1100b4 commit 852faf6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libs/qscintilla/Qt4Qt5/qsciscintilla.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,10 @@ void QsciScintilla::handleCallTipClick(int dir)
470470
if (ct_cursor > 0)
471471
ct.prepend('\001');
472472

473-
SendScintilla(SCI_CALLTIPSHOW, adjustedCallTipPosition(shift), ct.toLatin1().data());
473+
ScintillaBytes ct_bytes = textAsBytes(ct);
474+
const char *cts = ScintillaBytesConstData(ct_bytes);
475+
476+
SendScintilla(SCI_CALLTIPSHOW, adjustedCallTipPosition(shift), cts);
474477
}
475478

476479

0 commit comments

Comments
 (0)