Changeset 25671
- Timestamp:
- 01/15/14 08:46:27 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/extensions.h
r25665 r25671 224 224 resettvpic(); 225 225 char* log = NULL; 226 if(tpkgetpackage(mbox1->param, mbox1->param1, installpath, 0) == 0) 226 int tpkret = tpkgetpackage(mbox1->param, mbox1->param1, installpath, 0); 227 if(tpkret == 0) 227 228 { 228 229 log = gettpklog(installpath, 0); 229 230 textbox(_("Tpk Install Info - Install OK"), _(log), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 600, 0, 2); 231 } 232 else if(tpkret == 2) 233 { 234 textbox(_("Tpk Install Info - Install ERROR"), _("It may only be a package to be installed. If they want to install another package of this section, they only remove the installed packet. Is not the plugin after reinstalling the software TitanNit in TitanNit Menu Visible then perform an update by Tpk to: "), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 600, 0, 2); 230 235 } 231 236 else … … 382 387 } 383 388 384 if(ret != 0) log = gettpklog(installpath, 1); 385 if(ret == 0) log = gettpklog(installpath, 0); 389 if(ret == 0) 390 log = gettpklog(installpath, 0); 391 else if(ret == 2) 392 log = ostrcat(_("It may only be a package to be installed. If they want to install another package of this section, they only remove the installed packet. Is not the plugin after reinstalling the software TitanNit in TitanNit Menu Visible then perform an update by Tpk to: "), NULL, 0, 0); 393 else 394 log = gettpklog(installpath, 1); 386 395 textbox(_(text2), log, _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 600, 0, 0); 387 396 free(log); log = NULL;
Note: See TracChangeset
for help on using the changeset viewer.