Skip to content

Commit

Permalink
fix issue 467: misspelled word in browser menus
Browse files Browse the repository at this point in the history
packages/visualgst:
2010-05-02  Paolo Bonzini  <bonzini@gnu.org>

	* packages/visualgst/Debugger/GtkDebugger.st: Fix misspelling.
	* packages/visualgst/GtkAssistant.st: Fix misspelling.
	* packages/visualgst/VisualGST.st: Fix misspelling.
  • Loading branch information
bonzini committed May 2, 2010
1 parent 34f82de commit 4c508c1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions packages/visualgst/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2010-05-02 Paolo Bonzini <bonzini@gnu.org>

* packages/visualgst/Debugger/GtkDebugger.st: Fix misspelling.
* packages/visualgst/GtkAssistant.st: Fix misspelling.
* packages/visualgst/VisualGST.st: Fix misspelling.

2010-04-19 Paolo Bonzini <bonzini@gnu.org>

* GtkTranscriptWidget: Convert what is #show:-ed to a string.
Expand Down
2 changes: 1 addition & 1 deletion packages/visualgst/Debugger/GtkDebugger.st
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.';
{'<Control><Shift>S'. '<GtkDebugger>/File/SaveAs'. self. #saveAs}.
{'<Control>Q'. '<GtkDebugger>/File/Close'. self. #close}}.

^ self createNewMenuEntry: {GTK.GtkMenuItem menuItem: 'New worskpace' connectTo: self selector: #newWorkspace.
^ self createNewMenuEntry: {GTK.GtkMenuItem menuItem: 'New workspace' connectTo: self selector: #newWorkspace.
GTK.GtkMenuItem new.
GTK.GtkMenuItem menuItem: 'Open' accelPath: '<GtkDebugger>/File/Open'.
GTK.GtkMenuItem menuItem: 'Save' accelPath: '<GtkDebugger>/File/Save'.
Expand Down
2 changes: 1 addition & 1 deletion packages/visualgst/GtkAssistant.st
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.';
{'<Control><Shift>S'. '<GtkLauncher>/File/SaveAs'}.
{'<Control>Q'. '<GtkAssistant>/File/Close'}}.

^ self createNewMenuEntry: {GTK.GtkMenuItem menuItem: 'New worskpace' connectTo: self selector: #newWorkspace.
^ self createNewMenuEntry: {GTK.GtkMenuItem menuItem: 'New workspace' connectTo: self selector: #newWorkspace.
GTK.GtkMenuItem new.
GTK.GtkMenuItem menuItem: 'Open' accelPath: '<GtkLauncher>/File/Open' connectTo: self selector: #open.
GTK.GtkMenuItem menuItem: 'Save' accelPath: '<GtkLauncher>/File/Save' connectTo: self selector: #save.
Expand Down
2 changes: 1 addition & 1 deletion packages/visualgst/VisualGST.st
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.';
{'<Control><Shift>S'. '<GtkLauncher>/File/SaveAs'}.
{'<Control>Q'. '<GtkLauncher>/File/Quit'}}.

^ self createNewMenuEntry: {GTK.GtkMenuItem menuItem: 'New worskpace' connectTo: self selector: #newWorkspace.
^ self createNewMenuEntry: {GTK.GtkMenuItem menuItem: 'New workspace' connectTo: self selector: #newWorkspace.
GTK.GtkMenuItem new.
GTK.GtkMenuItem menuItem: 'Open' accelPath: '<GtkLauncher>/File/Open' connectTo: self selector: #open.
GTK.GtkMenuItem menuItem: 'Save' connectTo: self selector: #save.
Expand Down

0 comments on commit 4c508c1

Please sign in to comment.