summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-reader/Navigation.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/apps/opie-reader/Navigation.cpp b/noncore/apps/opie-reader/Navigation.cpp
index 7b392ba..4f11887 100644
--- a/noncore/apps/opie-reader/Navigation.cpp
+++ b/noncore/apps/opie-reader/Navigation.cpp
@@ -1,14 +1,16 @@
#include "Navigation.h"
+#include <string.h>
+
void CNavigation::saveposn(size_t posn)
{
// qDebug("Saved:%u [%u,%u,%u]", posn, historystart, historycurrent, historyend);
historycurrent = historyend = (historycurrent+1)%NAVIGATION_HISTORY_SIZE;
history[historycurrent] = posn;
if (historystart == historyend) historystart = (historystart+1)%NAVIGATION_HISTORY_SIZE;
// qDebug("Saved:%u [%u,%u,%u]", posn, historystart, historycurrent, historyend);
}
bool CNavigation::forward(size_t& loc)
{
if (historycurrent != historyend)