mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-23 21:20:47 +00:00
* DBModeler/Resources/Menu-{Cocoa,GNUstep}.gsmarkup: Remove a TODO
for an old unused hack. * EOModeler/EOModelerDocument.m: Add some comments about the new hack. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@26518 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1b2a288fdc
commit
df5e05ebad
4 changed files with 20 additions and 3 deletions
|
@ -1,6 +1,12 @@
|
|||
2008-05-13 Matt Rice <ratmice@gmail.com>
|
||||
|
||||
* DBModeler/Resources/Menu-{Cocoa,GNUstep}.gsmarkup: Remove a TODO
|
||||
for an old unused hack.
|
||||
* EOModeler/EOModelerDocument.m: Add some comments about the new hack.
|
||||
|
||||
2008-05-12 Matt Ride <ratmice@gmail.com>
|
||||
|
||||
* DBModeler/Resources/MainMenu-GNUstep.gsmarkup: Use openPrefs: action
|
||||
* DBModeler/Resources/Menu-GNUstep.gsmarkup: Use openPrefs: action
|
||||
for preferences menu item.
|
||||
|
||||
2008-05-12 Blake Nicholson <blaken@umich.edu>
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
action="switchAdaptor:" />
|
||||
<menuItem title="Check Consistency..."
|
||||
action="checkConsistency:" />
|
||||
<!-- TODO: representedObject for checkConsistency -->
|
||||
</menu>
|
||||
|
||||
<menu title="Edit" autoenablesItems="yes">
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
action="switchAdaptor:" />
|
||||
<menuItem title="Check Consistency..."
|
||||
action="checkConsistency:" />
|
||||
<!-- TODO: representedObject for checkConsistency -->
|
||||
</menu>
|
||||
|
||||
<menu title="Edit" autoenablesItems="yes">
|
||||
|
|
|
@ -71,6 +71,19 @@ showOnSuccess:(BOOL)flag;
|
|||
static Class _defaultEditorClass;
|
||||
static EOModelerEditor *_currentEditorForDocument;
|
||||
|
||||
/* FIXME we cross the library->application boundry whenever working
|
||||
* with the ConsistencyResults class which is declared in DBModeler
|
||||
* theres a few ways this is crossed:
|
||||
*
|
||||
* enabling/disabling the cancel button
|
||||
* appending text
|
||||
* avoiding running the panel if all checks pass.
|
||||
*
|
||||
* this could possibly be done with private methods in this class
|
||||
* called from the receiver of an EOMCheckConsistencyEndNotification
|
||||
* on the notification -object (or something).
|
||||
*/
|
||||
|
||||
/** Notification sent when beginning consistency checks.
|
||||
* The notifications object is the EOModelerDocument.
|
||||
* The receiver should call -appendConsistencyCheckErrorText:
|
||||
|
|
Loading…
Reference in a new issue