]> git.lyx.org Git - features.git/commitdiff
fix unused var warning
authorPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 11:51:39 +0000 (11:51 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 11:51:39 +0000 (11:51 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32331 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/Systemcall.cpp

index 4d40c58536b630605af68f6a34e3c3f6a3e0feef..5c612eee6720063e8826b84c72bc59a7ceafa5b8 100644 (file)
@@ -300,13 +300,13 @@ void SystemcallPrivate::processStarted()
 }
 
 
-void SystemcallPrivate::processFinished(int, QProcess::ExitStatus status)
+void SystemcallPrivate::processFinished(int, QProcess::ExitStatus)
 {
        state = Finished;
 }
 
 
-void SystemcallPrivate::processError(QProcess::ProcessError err)
+void SystemcallPrivate::processError(QProcess::ProcessError)
 {
        state = Error;
 }