aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perforce/perforcesubmiteditor.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-01-12 17:44:04 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-01-12 17:44:04 +0100
commit17daca603ab2e16e47da8d0d395dc20d2ad0ce27 (patch)
tree63eaf2ad0d4bf8b788b111b47e2430f76730d81a /src/plugins/perforce/perforcesubmiteditor.h
parent349c055d470d991244bcef8ec1b4c3cfc2359666 (diff)
Fixes: Use a model for the submit file list (to resolve the git diff mess)
Diffstat (limited to 'src/plugins/perforce/perforcesubmiteditor.h')
-rw-r--r--src/plugins/perforce/perforcesubmiteditor.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/perforce/perforcesubmiteditor.h b/src/plugins/perforce/perforcesubmiteditor.h
index 0f44332a69..5dba068315 100644
--- a/src/plugins/perforce/perforcesubmiteditor.h
+++ b/src/plugins/perforce/perforcesubmiteditor.h
@@ -39,6 +39,10 @@
#include <QtCore/QStringList>
#include <QtCore/QMap>
+namespace VCSBase {
+ class SubmitFileModel;
+}
+
namespace Perforce {
namespace Internal {
@@ -66,7 +70,6 @@ public:
static QString fileFromChangeLine(const QString &line);
protected:
- virtual QStringList vcsFileListToFileList(const QStringList &) const;
virtual QString fileContents() const;
virtual bool setFileContents(const QString &contents);
@@ -77,6 +80,7 @@ private:
void updateEntries();
QMap<QString, QString> m_entries;
+ VCSBase::SubmitFileModel *m_fileModel;
};
} // namespace Internal