Remove superflous conflict case.

This commit is contained in:
Klaas Freitag 2013-08-17 17:56:16 +02:00
parent bf978b3e0f
commit 1603e627a3

View file

@ -55,9 +55,6 @@ QString Progress::asResultString( Kind kind )
case StartDelete:
re = QCoreApplication::translate( "progress", "For deletion");
break;
case Conflict:
re = QCoreApplication::translate( "progress", "Conflict");
break;
case EndDelete:
re = QCoreApplication::translate( "progress", "deleted");
break;
@ -109,9 +106,6 @@ QString Progress::asActionString( Kind kind )
case EndDelete:
re = QCoreApplication::translate( "progress", "deleted");
break;
case Conflict:
re = QCoreApplication::translate( "progress", "conflict file");
break;
default:
Q_ASSERT(false);
}