-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show namespace in Manage Names tab #486
base: master
Are you sure you want to change the base?
Conversation
d4f51b2
to
6966912
Compare
Tested; works fine. |
6966912
to
cc0080a
Compare
@domob1812 This is ready for review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK cc0080a.
case NameNamespace::IdentityData: | ||
return tr("Identity data %1").arg(desc); | ||
case NameNamespace::NonStandard: | ||
return tr("Non-standard name %1").arg(desc); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, I remember already seeing code like this, but I can't find it in the current codebase. Was that just another PR or am I simply mistaken here? Of course if we already have a switch to generate text representations, we should reuse it, but seems we don't, so this is fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's something mildly similar in transactiontablemodel.cpp
, but it's for generating a text representation of the namespace without the rest of the name. That might be what you were thinking of?
cc0080a
to
0152fab
Compare
@domob1812 Feel free to merge this if it passes your review. |
No description provided.