mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/code] Remove unneeded arguments
This commit is contained in:
@@ -14,8 +14,8 @@ public:
|
||||
void startNewSession();
|
||||
ConsoleLine lineAtIndex(int i) const;
|
||||
int numberOfLines() const;
|
||||
const char * pushCommand(const char * text, size_t length);
|
||||
void pushResult(const char * text, size_t length);
|
||||
const char * pushCommand(const char * text);
|
||||
void pushResult(const char * text);
|
||||
void deleteLastLineIfEmpty();
|
||||
int deleteCommandAndResultsAtIndex(int index);
|
||||
private:
|
||||
@@ -30,7 +30,7 @@ private:
|
||||
}
|
||||
return marker;
|
||||
}
|
||||
const char * push(const char marker, const char * text, size_t length);
|
||||
const char * push(const char marker, const char * text);
|
||||
ConsoleLine::Type lineTypeForMarker(char marker) const;
|
||||
int indexOfNullMarker() const;
|
||||
void deleteLineAtIndex(int index);
|
||||
|
||||
Reference in New Issue
Block a user