102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
bool commitFiles(const QStringList &fileList, const QString &comment);
bool addFiles(const QStringList& fileList);
bool removeFiles(const QStringList& fileList, bool deleteLocal);
bool revertFiles(const QStringList& fileList);
bool renameFile(const QString& beforePath, const QString& afterPath, bool renameLocal);
bool undoRepository(QStringList& result, bool explainOnly);
bool updateRepository(QStringList& result, bool explainOnly);
private:
void log(const QString &text, bool isHTML=false)
{
if(logCallback)
(*logCallback)(logTextBrowser, text, isHTML);
}
|
>
|
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
bool commitFiles(const QStringList &fileList, const QString &comment);
bool addFiles(const QStringList& fileList);
bool removeFiles(const QStringList& fileList, bool deleteLocal);
bool revertFiles(const QStringList& fileList);
bool renameFile(const QString& beforePath, const QString& afterPath, bool renameLocal);
bool undoRepository(QStringList& result, bool explainOnly);
bool updateRepository(QStringList& result, bool explainOnly);
bool getFossilSettings(QStringList& result);
private:
void log(const QString &text, bool isHTML=false)
{
if(logCallback)
(*logCallback)(logTextBrowser, text, isHTML);
}
|