diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-17 05:50:45 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-02 10:10:17 -0400 |
| commit | 9f1520c69e88113d9a1a06f91bbabe9cf5ddef9f (patch) | |
| tree | b2271eabae2529ebd4dc16b8728632978eeb67b3 /src/modinfodialog.h | |
| parent | 81815d202b4364847062ba248321474ef5a2d686 (diff) | |
split images tab stuff in ImagesTab
text editor: fixed modified flag not being set to false when loading an empty file
Diffstat (limited to 'src/modinfodialog.h')
| -rw-r--r-- | src/modinfodialog.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modinfodialog.h b/src/modinfodialog.h index 70fd157c..f3ef6e76 100644 --- a/src/modinfodialog.h +++ b/src/modinfodialog.h @@ -69,7 +69,7 @@ public: virtual void clear() = 0;
virtual bool feedFile(const QString& rootPath, const QString& filename) = 0;
- virtual bool canClose() = 0;
+ virtual bool canClose();
};
@@ -135,7 +135,6 @@ public: signals:
- void thumbnailClickedSignal(const QString &filename);
void linkActivated(const QString &link);
void downloadRequest(const QString &link);
void modOpen(const QString &modName, int tab);
@@ -172,7 +171,6 @@ private: int tabIndex(const QString &tabId);
private slots:
- void thumbnailClicked(const QString &fileName);
void linkClicked(const QUrl &url);
void linkClicked(QString url);
@@ -239,7 +237,6 @@ private: std::vector<std::unique_ptr<ModInfoDialogTab>> m_tabs;
- QSignalMapper m_ThumbnailMapper;
QString m_RootPath;
OrganizerCore *m_OrganizerCore;
|
