Mercurial > hg > easyhg
comparison 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 |
comparison
equal
deleted
inserted
replaced
121:6ce2ceb2c3a5 | 122:c3e8342d2de9 |
---|---|
1021 this, SLOT(fsDirectoryChanged(QString))); | 1021 this, SLOT(fsDirectoryChanged(QString))); |
1022 connect(fsWatcher, SIGNAL(fileChanged(QString)), | 1022 connect(fsWatcher, SIGNAL(fileChanged(QString)), |
1023 this, SLOT(fsFileChanged(QString))); | 1023 this, SLOT(fsFileChanged(QString))); |
1024 } | 1024 } |
1025 | 1025 |
1026 void MainWindow::fsDirectoryChanged(QString) | 1026 void MainWindow::fsDirectoryChanged(QString d) |
1027 { | 1027 { |
1028 DEBUG << "MainWindow::fsDirectoryChanged " << d << endl; | |
1028 hgStat(); | 1029 hgStat(); |
1029 } | 1030 } |
1030 | 1031 |
1031 void MainWindow::fsFileChanged(QString) | 1032 void MainWindow::fsFileChanged(QString f) |
1032 { | 1033 { |
1034 DEBUG << "MainWindow::fsFileChanged " << f << endl; | |
1033 hgStat(); | 1035 hgStat(); |
1034 } | 1036 } |
1035 | 1037 |
1036 void MainWindow::showIncoming(QString output) | 1038 void MainWindow::showIncoming(QString output) |
1037 { | 1039 { |