Replace Q_DECL_OVERRIDE with override
ClosedPublic

Authored by nicolasfella on Dec 6 2019, 11:38 PM.

Details

Summary

It's the modern way of doing things

Test Plan

Played a round of klondike

Diff Detail

Repository
R410 KPatience
Branch
over
Lint
No Linters Available
Unit
No Unit Test Coverage
Build Status
Buildable 19562
Build 19580: arc lint + arc unit
nicolasfella created this revision.Dec 6 2019, 11:38 PM
Restricted Application added a reviewer: KDE Games. · View Herald TranscriptDec 6 2019, 11:38 PM
Restricted Application added a subscriber: kde-games-devel. · View Herald Transcript
nicolasfella requested review of this revision.Dec 6 2019, 11:38 PM
aacid accepted this revision.Dec 7 2019, 10:07 AM
aacid added a subscriber: aacid.

I have not looked at the whole diff, but if you exactly did replace Q_DECL_OVERRIDE with override is fine

This revision is now accepted and ready to land.Dec 7 2019, 10:07 AM

What I did was
find -name "*.h" -exec sed -i s/Q_DECL_OVERRIDE/override/ {} \;
find -name "*.cpp" -exec sed -i s/Q_DECL_OVERRIDE/override/ {} \;

nicolasfella closed this revision.Dec 7 2019, 2:38 PM