Changeset 35075


Ignore:
Timestamp:
08/11/15 17:25:58 (9 years ago)
Author:
gost
Message:

desired by Stephan ;-)

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/play.h

    r34618 r35075  
    12841284        if(dirrcret == 1)
    12851285        {
     1286                char* subfile = NULL;
     1287                subfile = ostrstr(file, "/movie/");
     1288                if(subfile != NULL)
     1289                        subfile = subfile + 7;
     1290                else
     1291                        subfile = file;
    12861292                if(getservicebyrecname(file, 0, 0) != NULL)
    12871293                        textbox(_("Message"), _("Record in progress"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 200, 0, 0);
    1288                 else if(textbox(_("Really Delete ?"), file, _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 200, 0, 0) == 1)
     1294                else if(textbox(_("Really Delete ?"), subfile, _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 1000, 200, 0, 0) == 1)
    12891295                {
    12901296                        unlink(file);
  • titan/titan/record.h

    r35062 r35075  
    14021402        if(type == RECTIMER && status.standby == 0)
    14031403        {
    1404                 tmpstr = ostrcat(_("Timer Record start !"), filename, 0, 0);
     1404                char* subfile = NULL;
     1405                subfile = ostrstr(filename, "/movie/");
     1406                if(subfile != NULL)
     1407                        subfile = subfile + 7;
     1408                else
     1409                        subfile = filename;
     1410                tmpstr = ostrcat(_("Timer Record start !"), subfile, 0, 0);
    14051411                textbox(_("Message"), tmpstr, _("OK"), getrcconfigint("rcok", NULL), NULL, 0, NULL, 0, NULL, 0, 900, 200, 4, 0);
    14061412                free(tmpstr); tmpstr = NULL;
Note: See TracChangeset for help on using the changeset viewer.