mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 15:21:57 +00:00
* Headers/Additions/GNUstepGUI/GSNibCompatibility.h: Remove
* Headers/Additions/GNUstepGUI/GSNibTemplates.h: Remove * Source/GNUmakefile: Update to reference new files. * Source/GSGormLoader.m: Change to reference the * Source/GSGormLoading.m: New gorm loading file. * Source/GSNibCompatibility.m: Removed. * Source/GSNibLoader.m: Reference the new file. * Source/GSNibLoading.m: New file containing the nib loading logic. * Source/GSNibTemplates.m: Removed. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27188 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
de22bc2880
commit
4b921c1db4
8 changed files with 21 additions and 9 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2008-12-02 02:07-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||||
|
|
||||||
|
* Headers/Additions/GNUstepGUI/GSNibCompatibility.h: Remove
|
||||||
|
* Headers/Additions/GNUstepGUI/GSNibTemplates.h: Remove
|
||||||
|
* Source/GNUmakefile: Update to reference new files.
|
||||||
|
* Source/GSGormLoader.m: Change to reference the
|
||||||
|
* Source/GSGormLoading.m: New gorm loading file.
|
||||||
|
* Source/GSNibCompatibility.m: Removed.
|
||||||
|
* Source/GSNibLoader.m: Reference the new file.
|
||||||
|
* Source/GSNibLoading.m: New file containing the nib loading logic.
|
||||||
|
* Source/GSNibTemplates.m: Removed.
|
||||||
|
|
||||||
2008-12-02 01:21-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
2008-12-02 01:21-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||||
|
|
||||||
* Source/GSNibCompatibility.m: Fix for bug #24979. Change in
|
* Source/GSNibCompatibility.m: Fix for bug #24979. Change in
|
||||||
|
|
|
@ -211,8 +211,8 @@ NSTextView_actions.m \
|
||||||
GSLayoutManager.m \
|
GSLayoutManager.m \
|
||||||
GSTypesetter.m \
|
GSTypesetter.m \
|
||||||
GSHorizontalTypesetter.m \
|
GSHorizontalTypesetter.m \
|
||||||
GSNibTemplates.m \
|
GSGormLoading.m \
|
||||||
GSNibCompatibility.m \
|
GSNibLoading.m \
|
||||||
GSTitleView.m \
|
GSTitleView.m \
|
||||||
GSToolTips.m \
|
GSToolTips.m \
|
||||||
GSToolbar.m \
|
GSToolbar.m \
|
||||||
|
@ -404,7 +404,7 @@ GSServicesManager.h \
|
||||||
GSTextConverter.h \
|
GSTextConverter.h \
|
||||||
GSTrackingRect.h \
|
GSTrackingRect.h \
|
||||||
GSHelpManagerPanel.h \
|
GSHelpManagerPanel.h \
|
||||||
GSNibTemplates.h \
|
GSGormLoading.h \
|
||||||
GSNibContainer.h \
|
GSNibContainer.h \
|
||||||
GSDisplayServer.h \
|
GSDisplayServer.h \
|
||||||
GSFusedSilica.h \
|
GSFusedSilica.h \
|
||||||
|
@ -420,7 +420,7 @@ GSTypesetter.h \
|
||||||
GSHorizontalTypesetter.h \
|
GSHorizontalTypesetter.h \
|
||||||
GSToolbar.h \
|
GSToolbar.h \
|
||||||
GSToolbarView.h \
|
GSToolbarView.h \
|
||||||
GSNibCompatibility.h \
|
GSNibLoading.h \
|
||||||
GSDragView.h \
|
GSDragView.h \
|
||||||
GSTitleView.h \
|
GSTitleView.h \
|
||||||
GSPrinting.h \
|
GSPrinting.h \
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include <AppKit/AppKit.h>
|
#include <AppKit/AppKit.h>
|
||||||
|
|
||||||
#include "GNUstepGUI/GSModelLoaderFactory.h"
|
#include "GNUstepGUI/GSModelLoaderFactory.h"
|
||||||
#include "GNUstepGUI/GSNibTemplates.h"
|
#include "GNUstepGUI/GSGormLoading.h"
|
||||||
|
|
||||||
@interface GSGormLoader : GSModelLoader
|
@interface GSGormLoader : GSModelLoader
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/** <title>GSNibTemplates</title>
|
/** <title>GSGormLoading</title>
|
||||||
|
|
||||||
<abstract>Contains all of the private classes used in .gorm files.</abstract>
|
<abstract>Contains all of the private classes used in .gorm files.</abstract>
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
#include <AppKit/NSApplication.h>
|
#include <AppKit/NSApplication.h>
|
||||||
#include <AppKit/NSScreen.h>
|
#include <AppKit/NSScreen.h>
|
||||||
#include <GNUstepBase/GSObjCRuntime.h>
|
#include <GNUstepBase/GSObjCRuntime.h>
|
||||||
#include <GNUstepGUI/GSNibTemplates.h>
|
#include <GNUstepGUI/GSGormLoading.h>
|
||||||
|
|
||||||
static const int currentVersion = 1; // GSNibItem version number...
|
static const int currentVersion = 1; // GSNibItem version number...
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include <AppKit/AppKit.h>
|
#include <AppKit/AppKit.h>
|
||||||
|
|
||||||
#include "GNUstepGUI/GSModelLoaderFactory.h"
|
#include "GNUstepGUI/GSModelLoaderFactory.h"
|
||||||
#include "GNUstepGUI/GSNibCompatibility.h"
|
#include "GNUstepGUI/GSNibLoading.h"
|
||||||
|
|
||||||
@interface GSNibLoader : GSModelLoader
|
@interface GSNibLoader : GSModelLoader
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/** <title>GSNibCompatibility</title>
|
/** <title>GSNibLoading</title>
|
||||||
|
|
||||||
<abstract>
|
<abstract>
|
||||||
These are templates for use with OSX Nib files. These classes are the
|
These are templates for use with OSX Nib files. These classes are the
|
Loading…
Add table
Add a link
Reference in a new issue