diff options
Diffstat (limited to 'desktop-widgets/mainwindow.cpp')
-rw-r--r-- | desktop-widgets/mainwindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp index df0190e10..ca78b82af 100644 --- a/desktop-widgets/mainwindow.cpp +++ b/desktop-widgets/mainwindow.cpp @@ -66,8 +66,10 @@ QProgressDialog *progressDialog = NULL; bool progressDialogCanceled = false; -extern "C" int updateProgress(int percent) +extern "C" int updateProgress(int percent, const char *text) { + if (verbose) + qDebug() << "git storage:" << percent << "% with note" << text; if (progressDialog) progressDialog->setValue(percent); return progressDialogCanceled; |