Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove unused local variable from style_footer(). |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
57ffe304c557d8fe2fd3d64a71902ffd |
User & Date: | drh 2017-12-05 17:17:29 |
Context
2017-12-05
| ||
20:16 | Replace the in-line graph-drawing javascript with a separate graph drawing module, "graph.js". check-in: 32a2fff8 user: drh tags: trunk | |
17:17 | Remove unused local variable from style_footer(). check-in: 57ffe304 user: drh tags: trunk | |
16:44 | Add default CSS for the label-value table. check-in: d2e9b376 user: drh tags: trunk | |
Changes
Changes to src/style.c.
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 |
/*
** Draw the footer at the bottom of the page.
*/
void style_footer(void){
const char *zFooter;
const char *zAd = 0;
unsigned int mAdFlags = 0;
int bMouseover = 0; /* Active hyperlinks after mouseover */
if( !headerHasBeenGenerated ) return;
/* Go back and put the submenu at the top of the page. We delay the
** creation of the submenu until the end so that we can add elements
** to the submenu while generating page text.
*/
|
< |
541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
/* ** Draw the footer at the bottom of the page. */ void style_footer(void){ const char *zFooter; const char *zAd = 0; unsigned int mAdFlags = 0; if( !headerHasBeenGenerated ) return; /* Go back and put the submenu at the top of the page. We delay the ** creation of the submenu until the end so that we can add elements ** to the submenu while generating page text. */ |