diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-07 18:29:20 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-15 14:40:39 -0400 |
| commit | 65ad374d9769524a62ac423b7d73661e42163265 (patch) | |
| tree | 3d7506d5050d566f7f60a5a3d7841d50779cb2e3 /src/executableslist.h | |
| parent | 617a6005451aba1d45f13228f13f1cc150a78bb4 (diff) | |
removed temporary setters in Executable, unnecessary now that it has mergeFrom()
Diffstat (limited to 'src/executableslist.h')
| -rw-r--r-- | src/executableslist.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/executableslist.h b/src/executableslist.h index 4965dbf9..e35cb550 100644 --- a/src/executableslist.h +++ b/src/executableslist.h @@ -39,9 +39,7 @@ public: {
CustomExecutable = 0x01,
ShowInToolbar = 0x02,
- UseApplicationIcon = 0x04,
-
- AllFlags = 0xff //I know, I know
+ UseApplicationIcon = 0x04
};
Q_DECLARE_FLAGS(Flags, Flag);
@@ -51,22 +49,11 @@ public: QString steamAppID, QString workingDirectory, Flags flags);
const QString& title() const;
- void setTitle(const QString& s);
-
const QFileInfo& binaryInfo() const;
- void setBinaryInfo(const QFileInfo& fi);
-
const QString& arguments() const;
- void setArguments(const QString& s);
-
const QString& steamAppID() const;
- void setSteamAppID(const QString& s);
-
const QString& workingDirectory() const;
- void setWorkingDirectory(const QString& s);
-
Flags flags() const;
- void setFlags(Flags f);
bool isCustom() const;
bool isShownOnToolbar() const;
|
