diff mainwindow.cpp @ 122:c3e8342d2de9

* Further fix to incremental log (put new changesets on the correct end of the list!)
author Chris Cannam
date Mon, 29 Nov 2010 11:14:29 +0000
parents 6ce2ceb2c3a5
children 63c2f3f61c79
line wrap: on
line diff
--- a/mainwindow.cpp	Mon Nov 29 11:04:52 2010 +0000
+++ b/mainwindow.cpp	Mon Nov 29 11:14:29 2010 +0000
@@ -1023,13 +1023,15 @@
             this, SLOT(fsFileChanged(QString)));
 }
 
-void MainWindow::fsDirectoryChanged(QString)
+void MainWindow::fsDirectoryChanged(QString d)
 {
+    DEBUG << "MainWindow::fsDirectoryChanged " << d << endl;
     hgStat();
 }
 
-void MainWindow::fsFileChanged(QString)
+void MainWindow::fsFileChanged(QString f)
 {
+    DEBUG << "MainWindow::fsFileChanged " << f << endl;
     hgStat();
 }