Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… bfd3be0d-9f21-0410-925f-e30e9767a5cc
  • Loading branch information
skonno committed Apr 7, 2011
1 parent fa720d5 commit fbe11c6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
12 changes: 12 additions & 0 deletions DoxyFooterFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<script type="text/javascript"><!--
google_ad_client = "ca-pub-3495323407368925";
/* CyberGarage(TWiki)-728x90 */
google_ad_slot = "9026730296";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_FILE_EXTENSION = .html
HTML_HEADER =
HTML_FOOTER =
HTML_FOOTER = DoxyFooterFile
HTML_STYLESHEET =
HTML_ALIGN_MEMBERS = YES
GENERATE_HTMLHELP = NO
Expand Down
4 changes: 3 additions & 1 deletion std/av/wrapper/objc/CyberLink/CGUpnpAvServer.m
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,10 @@ - (NSArray *)searchByBrowse:(NSString *)aSearchCriteria objectId:(NSString *)obj
for (CGUpnpAvObject *avObj in browseAvObjs) {
if ([avObj isItem]) {
[avObjs addObject:avObj];
continue;
}
}

for (CGUpnpAvObject *avObj in browseAvObjs) {
if ([avObj isContainer] == NO)
continue;
[self addAvObjectsFromArray:avObjs newAvObjs:[self searchByBrowse:aSearchCriteria objectId:[avObj objectId]]];
Expand Down

0 comments on commit fbe11c6

Please sign in to comment.