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

Method next

source/json_tool/editor_gui.cpp:70–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70void JsonEditor::next() {
71 if (!m_valueEditor->isEnabled() || saveChanges()) {
72 ++m_fileIndex;
73 if (m_fileIndex >= m_files.size()) {
74 close();
75 return;
76 }
77
78 displayCurrentFile();
79 }
80}
81
82void JsonEditor::back() {
83 if (m_fileIndex == 0)

Callers 14

sendPacketsMethod · 0.45
pullRequestsMethod · 0.45
tickSharedMethod · 0.45
updateMethod · 0.45
PlayerStorageMethod · 0.45
collidingTilesAlongLineFunction · 0.45
parseOrientationsMethod · 0.45
TESTFunction · 0.45
clearCacheMethod · 0.45
cleanupMethod · 0.45

Calls 2

isEnabledMethod · 0.80
sizeMethod · 0.45

Tested by 1

TESTFunction · 0.36