1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
|
QString url = tv.Value;
remoteUrls.append(url);
}
}
//------------------------------------------------------------------------------
bool MainWindow::diffFile(const QString &repoFile)
{
if(fossil().diffFile(repoFile, true))
return true;
else
return fossil().diffFile(repoFile, false);
}
//------------------------------------------------------------------------------
void MainWindow::on_actionDiff_triggered()
{
|
>
>
|
<
|
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
|
QString url = tv.Value;
remoteUrls.append(url);
}
}
//------------------------------------------------------------------------------
bool MainWindow::diffFile(const QString &repoFile)
{
const QString &gdiff = settings.GetFossilValue(FOSSIL_SETTING_GDIFF_CMD).toString();
if(!gdiff.isEmpty())
return fossil().diffFile(repoFile, true);
else
return fossil().diffFile(repoFile, false);
}
//------------------------------------------------------------------------------
void MainWindow::on_actionDiff_triggered()
{
|