Skip to content

Replacing its with m_ to match current convention

The current convention is to prefix member variables with m_ . In kfontinst an older(?) convention with the prefix its was used. I updated this with the help of regex, updating 2029 instances across kfontinst.

Replace: \bits([A-Z])(\w+)\b
With: m_\L$1$2

Merge request reports