Port isf-qt to giflib 5 and clean build warnings

This commit is contained in:
Mario Fetka
2026-07-06 09:37:59 +02:00
parent 0c67ad480c
commit 78cb2bc641
185 changed files with 392 additions and 735 deletions
+2 -4
View File
@@ -985,7 +985,8 @@ NetworkWindow::~NetworkWindow()
&& message[ p2pDataStart ] == '\x80' )
{
// Webcam invitation
QString camMessage( QString::fromUtf16( reinterpret_cast<const ushort *>( dataPtr + 10 ), ( safeSize - 10 - 1 ) / 2 ) );
QString camMessage( QString::fromUtf16( reinterpret_cast<const char16_t *>( dataPtr + 10 ),
( safeSize - 10 - 1 ) / int( sizeof( char16_t ) ) ) );
logMessage += "\n<br>" + formatRawData( incoming, message, p2pDataStart, 10, 1 ) // 1 per col.
+ "\n<br>" + formatString( camMessage )
@@ -1431,6 +1432,3 @@ NetworkWindow::~NetworkWindow()
return;
}
}
#include "networkwindow.moc"