Mercurial > hg > svgui
comparison widgets/InteractiveFileFinder.h @ 1406:a18e78b9c78b fix-static-analysis
Use override throughout
author | Chris Cannam |
---|---|
date | Mon, 26 Nov 2018 13:52:27 +0000 |
parents | 831188672987 |
children | 05d614f6e46d |
comparison
equal
deleted
inserted
replaced
1405:4c359c2b220c | 1406:a18e78b9c78b |
---|---|
36 | 36 |
37 QString getApplicationSessionExtension() const { | 37 QString getApplicationSessionExtension() const { |
38 return m_sessionExtension; | 38 return m_sessionExtension; |
39 } | 39 } |
40 | 40 |
41 QString getOpenFileName(FileType type, QString fallbackLocation = ""); | 41 QString getOpenFileName(FileType type, QString fallbackLocation = "") override; |
42 QString getSaveFileName(FileType type, QString fallbackLocation = ""); | 42 QString getSaveFileName(FileType type, QString fallbackLocation = "") override; |
43 void registerLastOpenedFilePath(FileType type, QString path); | 43 void registerLastOpenedFilePath(FileType type, QString path) override; |
44 | 44 |
45 QString find(FileType type, QString location, QString lastKnownLocation = ""); | 45 QString find(FileType type, QString location, QString lastKnownLocation = "") override; |
46 | 46 |
47 static void setParentWidget(QWidget *); | 47 static void setParentWidget(QWidget *); |
48 | 48 |
49 static InteractiveFileFinder *getInstance() { return &m_instance; } | 49 static InteractiveFileFinder *getInstance() { return &m_instance; } |
50 | 50 |