Skip to content

Commit

Permalink
Add missing override
Browse files Browse the repository at this point in the history
  • Loading branch information
plfiorini committed Jan 17, 2024
1 parent df77a48 commit 8542b1f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/plugins/platformtheme/liritheme.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ class Q_GUI_EXPORT LiriTheme : public QPlatformTheme
public:
explicit LiriTheme();

bool usePlatformNativeDialog(DialogType type) const;
QPlatformDialogHelper *createPlatformDialogHelper(DialogType type) const;
bool usePlatformNativeDialog(DialogType type) const override;
QPlatformDialogHelper *createPlatformDialogHelper(DialogType type) const override;

const QPalette *palette(Palette type = SystemPalette) const;
const QFont *font(Font type = SystemFont) const;
const QPalette *palette(Palette type = SystemPalette) const override;
const QFont *font(Font type = SystemFont) const override;

QVariant themeHint(ThemeHint hint) const;
QVariant themeHint(ThemeHint hint) const override;

private:
HintsSettings *m_hints;
Expand Down

0 comments on commit 8542b1f

Please sign in to comment.