1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-15 15:34:25 +03:00

Fix segmentation fault when try show Manual on Explorer or other service apps

This commit is contained in:
Sergey Kukunin 2011-06-11 02:41:52 +03:00
parent 97adb066a3
commit 28fe39ce54

View File

@ -998,7 +998,10 @@ void GMenu2X::main() {
menu->linkRight(); menu->linkRight();
break; break;
case MANUAL: case MANUAL:
menu->selLinkApp()->showManual(); {
LinkApp* app = menu->selLinkApp();
if ( app ) { app->showManual(); }
}
break; break;
case ALTLEFT: case ALTLEFT:
menu->decSectionIndex(); menu->decSectionIndex();