Added missing "self" in function calls

This commit is contained in:
Clement Lefebvre 2013-05-02 23:08:56 +01:00
parent 7de7382a4c
commit 795e6ec5bb

View File

@ -289,9 +289,9 @@ class ApplicationLauncher( easyButton ):
def loadDesktopEntry( self, desktopItem ):
try:
self.appName = strip_accents(desktopItem.getName())
self.appGenericName = strip_accents(desktopItem.getGenericName())
self.appComment = strip_accents(desktopItem.getComment())
self.appName = self.strip_accents(desktopItem.getName())
self.appGenericName = self.strip_accents(desktopItem.getGenericName())
self.appComment = self.strip_accents(desktopItem.getComment())
self.appExec = desktopItem.getExec()
self.appIconName = desktopItem.getIcon()
self.appCategories = desktopItem.getCategories()