Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@
mEntries.push_back( logline );

// Add it to the open log window, if any
if ( !mDialog.isNull() )
mDialog.data()->add( logline );
if ( !mDialog.isNull() ) {
QMetaObject::invokeMethod(mDialog.data(), "add", logline);

Check failure on line 128 in src/log.cpp

View workflow job for this annotation

GitHub Actions / Build (ubuntu-latest, 6.2.4)

no matching function for call to ‘QMetaObject::invokeMethod(DialogLogOutput*, const char [4], QString&)’
}

// if log file is open, append to log file
if (mOutputFile.isOpen()) {
Expand Down
Loading