use uint also for snarl

This commit is contained in:
Patrick von Reth 2011-08-11 14:29:03 +02:00
parent 3c6e943071
commit 1f809a2d95
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ void Snarl_Backend::unregisterApplication(Application *application){
delete snarlInterface;
}
int Snarl_Backend::notify(Notification notification){
uint Snarl_Backend::notify(Notification notification){
SnarlInterface *snarlInterface = _applications.value(notification.application());
qDebug()<<"Snarl using the notification instance of:"<<notification.application();
if(snarlInterface == NULL){

View File

@ -42,7 +42,7 @@ private:
public slots:
void registerApplication(Application *application);
void unregisterApplication(class Application *application);
int notify(Notification notification);
uint notify(Notification notification);
void closeNotification(Notification notification);
};