Downcase filenames.

This commit is contained in:
Ray Haleblian 2020-06-07 08:16:00 -04:00
parent d03139513d
commit 32a62ab39d
20 changed files with 45 additions and 45 deletions

View File

@ -52,10 +52,10 @@ https://github.com/rhaleblian/dslibris
#include "expat.h"
#include "Book.h"
#include "Button.h"
#include "Prefs.h"
#include "Text.h"
#include "book.h"
#include "button.h"
#include "prefs.h"
#include "text.h"
#include "main.h"
#include "parse.h"

View File

@ -1,7 +1,7 @@
#ifndef BOOK_H
#define BOOK_H
#include "Page.h"
#include "page.h"
#include <nds.h>
#include <string>
#include <list>

View File

@ -1,7 +1,7 @@
#ifndef _button_h
#define _button_h
#include "Text.h"
#include "text.h"
#include <unistd.h>
#include <string>

View File

@ -1,7 +1,7 @@
#ifndef _EPUB_H_
#define _EPUB_H_
#include "Book.h"
#include "book.h"
#include <string>
typedef enum { PARSE_CONTAINER, PARSE_ROOTFILE, PARSE_CONTENT } epub_parse_t;

View File

@ -27,8 +27,8 @@ A Book contains a vector of Pages.
#define PAGE_H
#include <nds.h>
#include "Book.h"
#include "Text.h"
#include "book.h"
#include "text.h"
class Page {
class Book *book;

View File

@ -2,7 +2,7 @@
#define _parse_h
#include <expat.h>
#include "Book.h"
#include "book.h"
#define PAGEBUFSIZE 2048

View File

@ -1,7 +1,7 @@
#ifndef _PREFS_H
#define _PREFS_H
#include "expat.h"
#include "App.h"
#include "app.h"
class Prefs
{

View File

@ -20,7 +20,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "App.h"
#include "app.h"
#include <errno.h>
#include <stdlib.h>
@ -40,9 +40,9 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "types.h"
#include "main.h"
#include "parse.h"
#include "Book.h"
#include "Button.h"
#include "Text.h"
#include "book.h"
#include "button.h"
#include "text.h"
#include "version.h"
// less-than operator to compare books by title

View File

@ -14,10 +14,10 @@
#include "types.h"
#include "main.h"
#include "parse.h"
#include "App.h"
#include "Book.h"
#include "Button.h"
#include "Text.h"
#include "app.h"
#include "book.h"
#include "button.h"
#include "text.h"
//! Book-related methods for App class.

View File

@ -15,10 +15,10 @@
#include "types.h"
#include "main.h"
#include "parse.h"
#include "App.h"
#include "Book.h"
#include "Button.h"
#include "Text.h"
#include "app.h"
#include "book.h"
#include "button.h"
#include "text.h"
#define MIN(x,y) (x < y ? x : y)
#define MAX(x,y) (x > y ? x : y)

View File

@ -17,10 +17,10 @@
#include "types.h"
#include "main.h"
#include "parse.h"
#include "App.h"
#include "Book.h"
#include "Button.h"
#include "Text.h"
#include "app.h"
#include "book.h"
#include "button.h"
#include "text.h"
#define MIN(x,y) (x < y ? x : y)
#define MAX(x,y) (x > y ? x : y)

View File

@ -14,10 +14,10 @@
#include "types.h"
#include "main.h"
#include "parse.h"
#include "App.h"
#include "Book.h"
#include "Button.h"
#include "Text.h"
#include "app.h"
#include "book.h"
#include "button.h"
#include "text.h"
#define MIN(x,y) (x < y ? x : y)
#define MAX(x,y) (x > y ? x : y)

View File

@ -1,5 +1,5 @@
#if 0
#include <App.h>
#include <app.h>
#include <dswifi9.h>
#include <DSGUI/BIPCCodes.h>

View File

@ -1,8 +1,8 @@
#include "Book.h"
#include "book.h"
#include "main.h"
#include "parse.h"
#include "epub.h"
#include "App.h"
#include "app.h"
#include <stdio.h>
#include <errno.h>
#include <sys/param.h>

View File

@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include <nds.h>
#include <stdio.h>
#include "Button.h"
#include "button.h"
Button::Button() {
}

View File

@ -24,10 +24,10 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "dirent.h"
#include "fat.h"
#include "App.h"
#include "Book.h"
#include "Button.h"
#include "Text.h"
#include "app.h"
#include "book.h"
#include "button.h"
#include "text.h"
#include "expat.h"
#include "main.h"
#include "parse.h"

View File

@ -18,7 +18,7 @@
To contact the copyright holder: rayh23@sourceforge.net
*/
#include "Page.h"
#include "page.h"
#include <string.h>
#include <list>

View File

@ -4,9 +4,9 @@
#include "sys/time.h"
#include "nds.h"
#include "main.h"
#include "App.h"
#include "Prefs.h"
#include "Book.h"
#include "app.h"
#include "prefs.h"
#include "book.h"
#define PARSEBUFSIZE 1024*64

View File

@ -28,11 +28,11 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "fat.h"
#include "string.h"
#include "App.h"
#include "app.h"
#include "ft.h"
#include "main.h"
#include "version.h"
#include "Text.h"
#include "text.h"
extern char msg[];
std::stringstream ss;