Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So let's say I do something like this:

QIcon myIcon(":/resources/icon.ico");

How can I later determine the path for that icon, e.g.

QString path = myIcon.getPath();

The problem is, there is no getPath() member. And I can't find anything similar, but surely there must be a way! :(

I guess I could inherit the QIcon class and add this functionality, but it's probably built in and I'm overlooking it?

share|improve this question

1 Answer

up vote 5 down vote accepted

The filename isn't stored in QIcon, it's only used for constructing the image.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.