diff options
| author | 2025-06-16 22:22:29 +0200 | |
|---|---|---|
| committer | 2025-06-16 22:22:29 +0200 | |
| commit | 5882316f4ccd20a768ae296e1d7efcdfed45d0a3 (patch) | |
| tree | f1ca261563b7102991e19962d4027e46313015a4 /src/modules/spaste | |
| parent | Support sending authorization ID in SASL EXTERNAL (#2700) (diff) | |
| download | KVIrc-5882316f4ccd20a768ae296e1d7efcdfed45d0a3.tar.gz KVIrc-5882316f4ccd20a768ae296e1d7efcdfed45d0a3.tar.bz2 KVIrc-5882316f4ccd20a768ae296e1d7efcdfed45d0a3.zip | |
KviControlCodes: fix compilation with Qt >= 6.9 (#2705)
* KviControlCodes: Qt >= 6.9's QChar removed implicit casts from ctors, add explicit cast to accommodate
* Update github action jobs
Diffstat (limited to 'src/modules/spaste')
| -rw-r--r-- | src/modules/spaste/SlowPasteController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/spaste/SlowPasteController.cpp b/src/modules/spaste/SlowPasteController.cpp index f60e84396..60c66dae2 100644 --- a/src/modules/spaste/SlowPasteController.cpp +++ b/src/modules/spaste/SlowPasteController.cpp @@ -111,7 +111,7 @@ void SlowPasteController::pasteFile() { line = data; if(line.isEmpty()) - line = QChar(KviControlCodes::Reset); + line = QChar((char)KviControlCodes::Reset); line.replace('\t', QString(KVI_OPTION_UINT(KviOption_uintSpacesToExpandTabulationInput), ' ')); //expand tabs to spaces |
