Changeset 16517
- Timestamp:
- 06/12/12 22:25:34 (11 years ago)
- Location:
- titan/plugins
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/imdbapi/imdbapi.h
r16512 r16517 34 34 struct imdbapi* getimdbapi(struct imdbapi** first, char* title, int flag, int flag1) 35 35 { 36 struct imdbapi* imdbapi = NULL;37 36 char* tmpstr = NULL, *ret = NULL; 38 37 char* tmpsearch = NULL; … … 210 209 if(search != NULL) 211 210 { 212 freeimdbapi(&node ); node = NULL;213 node = getimdbapi(& search, 0, 0);211 freeimdbapi(&node, 0); node = NULL; 212 node = getimdbapi(&node, search, 0, 0); 214 213 free(search); search = NULL; 215 214 goto start; … … 220 219 } 221 220 222 freeimdbapi(&node ); node = NULL;221 freeimdbapi(&node, 0); node = NULL; 223 222 setosdtransparent(getskinconfigint("osdtransparent", NULL)); 224 223 status.hangtime = getconfigint("hangtime", NULL); -
titan/plugins/keylock/keylock.c
r16512 r16517 18 18 char* bg = NULL; 19 19 20 setnodeattr(keylock, framebuffer );20 setnodeattr(keylock, framebuffer, 0); 21 21 bg = savescreen(keylock); 22 22 drawscreen(keylock, 0, 0); -
titan/plugins/news/news.h
r16512 r16517 130 130 { 131 131 132 while( string_find(""", tmpstr))133 132 while(ostrstr(tmpstr, """) != NULL) 133 tmpstr = string_replace(""", "\"", tmpstr, 1); 134 134 tmpstr = string_decode(tmpstr, 0); 135 135 -
titan/plugins/permtime/permtime.c
r16512 r16517 21 21 char* bg = NULL; 22 22 23 setnodeattr(permtime, framebuffer );23 setnodeattr(permtime, framebuffer, 0); 24 24 bg = savescreen(permtime); 25 25 -
titan/plugins/tithek/tithek.h
r16512 r16517 639 639 tmpstr = string_resub("\": \"url=", "\", \"", tmpstr, 0); 640 640 641 while( string_find(",url=", tmpstr))641 while(ostrstr(tmpstr, ",url=") != NULL) 642 642 tmpstr = string_replace(",url=", "\nurl=", tmpstr, 1); 643 643
Note: See TracChangeset
for help on using the changeset viewer.