From 0b12758ad7f05a1ea9e9f104f555db3134a0530a Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 7 Nov 2013 11:41:02 -0500 Subject: [PATCH] Test fix for compile warnings with "out.simplified()" on 10. --- src-qt4/pc-softwaremanager/extras.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-qt4/pc-softwaremanager/extras.h b/src-qt4/pc-softwaremanager/extras.h index dda689b42..d3f382727 100644 --- a/src-qt4/pc-softwaremanager/extras.h +++ b/src-qt4/pc-softwaremanager/extras.h @@ -109,7 +109,7 @@ class Extras{ QString out = name.toLower(); out.remove(" "); out.remove("\t"); - out.simplified(); + out = out.simplified(); return out; }