Skip to content

Commit

Permalink
Merge pull request #118 from DiGMi/master
Browse files Browse the repository at this point in the history
Fixing casting from pointer to int
  • Loading branch information
wadealer committed Feb 4, 2014
2 parents 4edbfed + 8dfb052 commit 25cc3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/psitrayicon.cpp
Expand Up @@ -188,7 +188,7 @@ void PsiTrayIcon::animate()
return;

QString cachedName = "PsiTray/" + PsiOptions::instance()->getOption("options.iconsets.status").toString()
+ "/" + icon_->name() + "/" + QString::number(int(icon_)) + "/"
+ "/" + icon_->name() + "/" + QString::number(intptr_t(icon_)) + "/"
+ QString::number( icon_->frameNumber() );

QPixmap p;
Expand Down

0 comments on commit 25cc3e9

Please sign in to comment.