Skip to content

Commit ef5bda3

Browse files
committed
fix compile issues
1 parent 7bce21b commit ef5bda3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/git/Config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ QString Config::value<QString>(const QString &key,
102102
return defaultValue;
103103
}
104104

105-
git_buf buf = GIT_BUF_INIT_CONST(nullptr, 0);
105+
git_buf buf = GIT_BUF_INIT;
106106
git_config_get_string_buf(&buf, d.data(), key.toUtf8());
107107
QString value = QString::fromUtf8(buf.ptr, buf.size);
108108
git_buf_dispose(&buf);

src/git/Diff.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ QByteArray Diff::print() {
108108
QByteArray diff;
109109
for (auto file : data.files) {
110110
for (auto hunk : file.hunks) {
111-
diff.append(hunk.header);
111+
diff.append(hunk.header.toUtf8());
112112

113113
for (auto line : hunk.lines)
114-
diff.append(line);
114+
diff.append(line.toUtf8());
115115
}
116116
}
117117
qDebug() << QString(diff);

src/git/Remote.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ void Remote::log(const QString &text) {
644644
return;
645645

646646
QString time = QTime::currentTime().toString(Qt::ISODateWithMs);
647-
QTextStream(&file) << time << " - " << text << endl;
647+
QTextStream(&file) << time << " - " << text << Qt::endl;
648648
}
649649

650650
} // namespace git

0 commit comments

Comments
 (0)