Removed unnecessary comments
This commit is contained in:
parent
3bce64af9f
commit
1670cb507d
|
@ -73,8 +73,6 @@ BookReader::BookReader(const char *path, int* result) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cout << "doc opened ok ?!" << std::endl;
|
|
||||||
|
|
||||||
int current_page = load_last_page(book_name.c_str());
|
int current_page = load_last_page(book_name.c_str());
|
||||||
//int current_page = 0;
|
//int current_page = 0;
|
||||||
|
|
||||||
|
@ -154,7 +152,6 @@ void BookReader::switch_page_layout() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void BookReader::draw(bool drawHelp) {
|
void BookReader::draw(bool drawHelp) {
|
||||||
//std::cout << "BookReader::draw" << std::endl;
|
|
||||||
if (configDarkMode == true) {
|
if (configDarkMode == true) {
|
||||||
SDL_ClearScreen(RENDERER, BLACK);
|
SDL_ClearScreen(RENDERER, BLACK);
|
||||||
} else {
|
} else {
|
||||||
|
@ -223,8 +220,6 @@ void BookReader::show_status_bar() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void BookReader::switch_current_page_layout(BookPageLayout bookPageLayout, int current_page) {
|
void BookReader::switch_current_page_layout(BookPageLayout bookPageLayout, int current_page) {
|
||||||
std::cout << "enter switch_current_page_layout " << std::endl;
|
|
||||||
|
|
||||||
if (layout) {
|
if (layout) {
|
||||||
current_page = layout->current_page();
|
current_page = layout->current_page();
|
||||||
delete layout;
|
delete layout;
|
||||||
|
@ -241,6 +236,4 @@ void BookReader::switch_current_page_layout(BookPageLayout bookPageLayout, int c
|
||||||
layout = new LandscapePageLayout(doc, current_page);
|
layout = new LandscapePageLayout(doc, current_page);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cout << "exit switch_current_page_layout " << std::endl;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue