Translations:Development/Tutorials/Common Programming Mistakes/7/en

From KDE TechBase

If you have a method in a class that does not access any members and therefore does not need an object to operate, make it static. If additionally, it is a private helper function that is not needed outside of the file, make it a file-static function. That hides the symbol completely.