* Framework/English.lproj/SaveModified.gorm: Correct issues with

Gorm file.
	* Framework/PCSaveModified.m: Use setTitle: instead of setStringValue:
	to set the titles of the buttons.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@30481 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2010-05-30 05:47:11 +00:00
parent 3517ccbc92
commit b4c12c1a73
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2010-05-30 01:54-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Framework/English.lproj/SaveModified.gorm: Correct issues with
Gorm file.
* Framework/PCSaveModified.m: Use setTitle: instead of setStringValue:
to set the titles of the buttons.
2010-05-30 01:44-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Modules/Editors/ProjectCenter/PCEditor.m: Temporarily comment out

View file

@ -74,9 +74,9 @@ BOOL PCRunSaveModifiedFilesPanel(PCEditorManager *manager,
[filesList reloadData];
// Buttons
[defaultButton setStringValue:defaultText];
[alternateButton setStringValue:alternateText];
[otherButton setStringValue:otherText];
[defaultButton setTitle:defaultText];
[alternateButton setTitle:alternateText];
[otherButton setTitle:otherText];
[panel makeKeyAndOrderFront:self];