ducttape / ducttape-engine

Ducttape Engine - A universal game engine

Home Page:http://ducttape-dev.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use QString everywhere instead of QString& when passing to a function

svenstaro opened this issue · comments

As far as I know, we never actually need to use the reference to modify its value. QString uses COW so the extra reference is useless.

This is done.