Skip to content

Commit

Permalink
#3134 log: ignore more warnings in log dialog for Qt 6.8.0
Browse files Browse the repository at this point in the history
Signed-off-by: Patrizio Bekerle <[email protected]>
  • Loading branch information
pbek committed Oct 24, 2024
1 parent e276685 commit afb30ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# QOwnNotes Changelog

## 24.10.3
- More warnings are now ignored in log dialog for Qt 6.8.0 (for [#3134](https://github.com/pbek/QOwnNotes/issues/3134))

## 24.10.2
- A small graphical glitch on macOS in the *Markdown highlighting settings* was fixed
(for [#3130](https://github.com/pbek/QOwnNotes/issues/3130))
Expand Down
2 changes: 2 additions & 0 deletions src/widgets/logwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ void LogWidget::log(LogWidget::LogType logType, const QString &text) {
text.contains(QLatin1String("QXcbConnection: XCB error:")) ||
text.contains(QLatin1String("failed to create compose table")) ||
text.contains(QLatin1String("OpenType support missing for")) ||
text.contains(QLatin1String("Could not find accessible on path:")) ||
text.contains(QLatin1String("Accessible invalid: QAccessibleInterface")) ||
text.contains(QLatin1String("Using QCharRef with an index pointing outside")) ||
text.contains(QLatin1String("load glyph failed err=")) ||
text.contains(QLatin1String("[Botan Error] Invalid CBC padding")) ||
Expand Down

0 comments on commit afb30ab

Please sign in to comment.