[nostalgia/studio] Make Editor's itemName and exportable const

This commit is contained in:
2020-03-29 13:34:10 -05:00
parent 4011773374
commit a81582d3cd
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ class NOSTALGIASTUDIO_EXPORT Editor: public QWidget {
/**
* Returns the name of item being edited.
*/
virtual QString itemName() = 0;
virtual QString itemName() const = 0;
virtual void exportFile();
@@ -55,7 +55,7 @@ class NOSTALGIASTUDIO_EXPORT Editor: public QWidget {
void setExportable(bool);
bool exportable();
bool exportable() const;
protected:
/**