mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Some fixes to handling itemized texts
This commit is contained in:
parent
e4b414bae3
commit
6dd6aea940
@ -6,7 +6,7 @@
|
|||||||
* the Free Software Foundation; either version 2 of the License, or *
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
* (at your option) any later version. *
|
* (at your option) any later version. *
|
||||||
* *
|
* *
|
||||||
* $Id: descriptor.c 1.8 2004/03/07 11:07:57 kls Exp $
|
* $Id: descriptor.c 1.9 2004/03/13 11:07:02 kls Exp $
|
||||||
* *
|
* *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ int ExtendedEventDescriptors::getMaximumTextLength() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *ExtendedEventDescriptors::getText(const char *separation1, const char *separation2) {
|
char *ExtendedEventDescriptors::getText(const char *separation1, const char *separation2) {
|
||||||
char *text=new char[getMaximumTextLength()];
|
char *text=new char[getMaximumTextLength()+strlen(separation1)+strlen(separation2)];
|
||||||
return getText(text, separation1, separation2);
|
return getText(text, separation1, separation2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -148,7 +148,7 @@ int ExtendedEventDescriptors::getMaximumTextPlainLength() {
|
|||||||
|
|
||||||
char *ExtendedEventDescriptors::getTextPlain() {
|
char *ExtendedEventDescriptors::getTextPlain() {
|
||||||
char *text=new char[getMaximumTextPlainLength()];
|
char *text=new char[getMaximumTextPlainLength()];
|
||||||
return getText(text);
|
return getTextPlain(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *ExtendedEventDescriptors::getTextPlain(char *buffer) {
|
char *ExtendedEventDescriptors::getTextPlain(char *buffer) {
|
||||||
@ -182,8 +182,8 @@ int ExtendedEventDescriptors::getMaximumTextItemizedLength() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
char *ExtendedEventDescriptors::getTextItemized(const char *separation1, const char *separation2) {
|
char *ExtendedEventDescriptors::getTextItemized(const char *separation1, const char *separation2) {
|
||||||
char *text=new char[getMaximumTextItemizedLength()];
|
char *text=new char[getMaximumTextItemizedLength()+strlen(separation1)+strlen(separation2)];
|
||||||
return getText(text, separation1, separation2);
|
return getTextItemized(text, separation1, separation2);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *ExtendedEventDescriptors::getTextItemized(char *buffer, const char *separation1, const char *separation2) {
|
char *ExtendedEventDescriptors::getTextItemized(char *buffer, const char *separation1, const char *separation2) {
|
||||||
@ -243,6 +243,7 @@ bool ExtendedEventDescriptors::getTextItemized(Loop::Iterator &it, bool &valid,
|
|||||||
item.item.getText(itemDescription);
|
item.item.getText(itemDescription);
|
||||||
item.itemDescription.getText(itemText);
|
item.itemDescription.getText(itemText);
|
||||||
valid=true;
|
valid=true;
|
||||||
|
break;
|
||||||
} else {
|
} else {
|
||||||
it.reset();
|
it.reset();
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user