From: Adam Gołębiowski Date: Tue, 21 Oct 2003 15:19:42 +0000 (+0000) Subject: - this patch is ugly - since print_line is not used anywhere (and it X-Git-Tag: auto/ac/ekglog-20031222-1~10 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fekglog.git;a=commitdiff_plain;h=951cff37f263d3a4227a585f36cf459193347ad5 - this patch is ugly - since print_line is not used anywhere (and it caused compilation fail), I simply commented it out Changed files: ekglog-ncurses_fix.patch -> 1.1 --- diff --git a/ekglog-ncurses_fix.patch b/ekglog-ncurses_fix.patch new file mode 100644 index 0000000..82b7d36 --- /dev/null +++ b/ekglog-ncurses_fix.patch @@ -0,0 +1,26 @@ +--- src/stuff.cc~ 2003-10-21 14:54:23.000000000 +0000 ++++ src/stuff.cc 2003-10-21 15:07:17.000000000 +0000 +@@ -32,9 +32,10 @@ + } + + +-void print_line(WINDOW *w, const std::string &str) { ++/* ++ void print_line(WINDOW *w, const std::string &str) { + wprintw(w, str.c_str()); +-} ++}*/ + + + /* +--- src/stuff.hh~ 2003-10-21 14:54:34.000000000 +0000 ++++ src/stuff.hh 2003-10-21 15:07:25.000000000 +0000 +@@ -33,7 +33,7 @@ + class bad_string {}; + + int str2int(const std::string &str); +-void print_line(WINDOW *w, const std::string &str); ++//void print_line(WINDOW *w, const std::string &str); + int color_pair(int fg, int bold, int bg); + int line_lenght(const std::string &str); + const std::string time_string(time_t t);