Skip to content

Commit

Permalink
blank implementations for core 3.6's UIFunctions
Browse files Browse the repository at this point in the history
  • Loading branch information
TuxPaper committed Aug 23, 2024
1 parent c25c398 commit a55edc3
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,17 @@ public void setStatusText(int statustype, String key,

}

@Override
public Object pushStatusText(String message) {
loge("pushStatusText " + message);
return null;
}

@Override
public void popStatusText(Object pushed, int reason, String message) {
loge("popStatusText:pushed=" + pushed + ";reason=" + reason + ";msg=" + message);
}

@Override
public boolean dispose(boolean for_restart) {
loge("dispose");
Expand Down

0 comments on commit a55edc3

Please sign in to comment.