- Timestamp:
- 10/15/13 13:01:25 (10 years ago)
- Location:
- titan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/tithek/tithek.h
r24251 r24325 1180 1180 free(tmpstr); tmpstr = NULL; 1181 1181 1182 if(ostr cmp(title, "TiThek - Internet Radio") == 0)1182 if(ostrstr(title, "Internet Radio") != NULL) 1183 1183 flag = 4; 1184 1184 … … 1237 1237 mbox = menulistbox(mlist, NULL, skintitle, NULL, NULL, 1, 0); 1238 1238 if(mbox != NULL) keyconf = mbox->name; 1239 debug(99, "tmpstr1: %s filename: %s flag: %s", tmpstr1, filename, flag); 1239 1240 if(ostrcmp(keyconf, "Streaming Playback (default)") == 0) 1240 1241 { -
titan/titan/extensions.h
r24170 r24325 218 218 tmpinfo = ostrcat(tmpinfo, " ?", 1, 0); 219 219 220 if(textbox(_("Tpk Install Info"), _(tmpinfo), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0) == 1)220 if(textbox(_("Tpk Install Info"), _(tmpinfo), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 200, 0, 0) == 1) 221 221 { 222 222 drawscreen(load, 0, 0); … … 292 292 if(file_exist("/tmp/.tpk_needs_reboot")) 293 293 { 294 textbox(_("Message"), _("TPK Remove done, your system will reboot !"), "EXIT", getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, NULL, 0, 600, 200, 0, 0);294 textbox(_("Message"), _("TPK Remove done, your system will reboot !"), "EXIT", getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, NULL, 0, 800, 200, 0, 0); 295 295 system("init 6"); 296 296 } … … 345 345 tmpinfo = ostrcat(tmpinfo, " ?", 1, 0); 346 346 347 if(textbox(_(text2), _(tmpinfo), "EXIT", getrcconfigint("rcexit", NULL), "OK", getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0) == 2)347 if(textbox(_(text2), _(tmpinfo), "EXIT", getrcconfigint("rcexit", NULL), "OK", getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, 1000, 200, 0, 0) == 2) 348 348 { 349 349 char* log = NULL; … … 370 370 if(ret != 0) log = gettpklog(installpath, 1); 371 371 if(ret == 0) log = gettpklog(installpath, 0); 372 textbox(_(text2), log, "EXIT", getrcconfigint("rcexit", NULL), "OK", getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, 800, 600, 0, 0);372 textbox(_(text2), log, "EXIT", getrcconfigint("rcexit", NULL), "OK", getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, 1000, 600, 0, 0); 373 373 free(log); log = NULL; 374 374 unlink(TPKLOG); 375 textbox(_("Message"), _("Some plugins needs restart.\nIf the plugin is not active\nreboot the box."), "EXIT", getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, NULL, 0, 600, 200, 0, 0);375 textbox(_("Message"), _("Some plugins needs restart.\nIf the plugin is not active\nreboot the box."), "EXIT", getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, NULL, 0, 1000, 200, 0, 0); 376 376 loadplugin(); 377 377 if(file_exist("/tmp/.tpk_needs_reboot"))
Note: See TracChangeset
for help on using the changeset viewer.