MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / forwardPage

Method forwardPage

source/frontend/StarCodexInterface.cpp:83–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83void CodexInterface::forwardPage() {
84 if (m_currentCodex && m_currentPage < m_currentCodex->pageCount() - 1) {
85 ++m_currentPage;
86 setupPageText();
87 }
88}
89
90void CodexInterface::backwardPage() {
91 if (m_currentCodex && m_currentPage > 0) {

Callers

nothing calls this directly

Calls 1

pageCountMethod · 0.80

Tested by

no test coverage detected