File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1+ 2019-14-23 (0.12.15)
2+ ANDROID: fix crash entering c,v in edit control mode
3+
142019-14-02 (0.12.15)
25 ANDROID: fix crash passing negative duration to SOUND command
36
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ sub do_about()
119119 color 7
120120 print "Version " ; sbver
121121 print
122- print "Copyright (c) 2002-2018 Chris Warren-Smith"
122+ print "Copyright (c) 2002-2019 Chris Warren-Smith"
123123 print "Copyright (c) 1999-2006 Nicholas Christopoulos" + chr( 10 )
124124
125125 local bn_home
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ struct Runtime : public System {
7474 bool loadSettings (Properties<String *> &settings);
7575 void saveConfig ();
7676 void runPath (const char *path);
77- void setClipboardText (const char *s) { setString (" setClipboardText" , s); }
77+ void setClipboardText (const char *s) { if (s) setString (" setClipboardText" , s); }
7878 char *getClipboardText ();
7979 void setFocus (bool focus) { _hasFocus = focus; }
8080 int getFontId ();
You can’t perform that action at this time.
0 commit comments