mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
* Source/win32/WIN32Server.m: Re-add 2005-02-23 change.
* Source/xlib/GSXftFontInfo.m (-setupAttributes): Make log message more verbose. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@21030 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f9c0246d47
commit
e71e98d0e0
4 changed files with 16 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-04-01 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/win32/WIN32Server.m: Re-add 2005-02-23 change.
|
||||
|
||||
* Source/xlib/GSXftFontInfo.m (-setupAttributes): Make log message
|
||||
more verbose.
|
||||
|
||||
2005-04-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/x11/XGDragView.m: Complete code changes to factor out as
|
||||
|
@ -9,7 +16,7 @@
|
|||
|
||||
* Headers/x11/XGDragView.h, Source/x11/XGDragView.m: Tag previous
|
||||
version of file for release.
|
||||
* Source/win32/WIN32Server.m: Revert 2005-2-23 change for this release.
|
||||
* Source/win32/WIN32Server.m: Revert 2005-02-23 change for this release.
|
||||
|
||||
2005-03-29 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -31,8 +31,7 @@ emulate the DPS functions required by the front-end system.
|
|||
|
||||
@ifset GNUSTEP-BACK-FTP-MACHINE
|
||||
The gstep-back-@value{GNUSTEP-BACK-VERSION}.tar.gz distribution
|
||||
file has been placed on @samp{@value{GNUSTEP-BACK-FTP-MACHINE}} in
|
||||
@samp{@value{GNUSTEP-BACK-FTP-DIRECTORY}}.
|
||||
file has been placed at @url{ftp://@value{GNUSTEP-BACK-FTP-MACHINE}/@value{GNUSTEP-BACK-FTP-DIRECTORY}}.
|
||||
@end ifset
|
||||
|
||||
@section Where do I send bug reports?
|
||||
|
|
|
@ -125,7 +125,7 @@ LRESULT CALLBACK MainWndProc(HWND hwnd, UINT uMsg,
|
|||
watcher: (id<RunLoopEvents>)self
|
||||
forMode: mode];
|
||||
#else
|
||||
// FIXME
|
||||
#if 0
|
||||
NSTimer *timer;
|
||||
|
||||
timer = [NSTimer timerWithTimeInterval: 0.01
|
||||
|
@ -134,6 +134,11 @@ LRESULT CALLBACK MainWndProc(HWND hwnd, UINT uMsg,
|
|||
userInfo: nil
|
||||
repeats: YES];
|
||||
[[NSRunLoop currentRunLoop] addTimer: timer forMode: mode];
|
||||
#else
|
||||
[[NSRunLoop currentRunLoop] addMsgTarget: self
|
||||
withMethod: @selector(callback:)
|
||||
forMode: mode];
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -682,7 +682,7 @@ static NSArray *faFromFc(FcPattern *pat)
|
|||
if ((xfontname == nil) ||
|
||||
(font_info = XftFontOpenXlfd(xdpy, defaultScreen, [xfontname UTF8String])) == NULL)
|
||||
{
|
||||
NSLog(@"Unable to open fixed font");
|
||||
NSLog(@"Unable to open fixed font %@", xfontname);
|
||||
return NO;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue