Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
5.6.1
-
0c4a31ed4 (dev)
Description
namespace Ns { class Tr : public QObject { Q_OBJECT void func(); }; void Ns::Tr::func() // Ns is qualified although we're inside namespace Ns context { tr("message"); // Qualifying with unknown namespace/class ::Ns } }