mirror of
https://github.com/gnustep/libs-back.git
synced 2025-06-03 10:41:09 +00:00
Removed some compiler warnings.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@22444 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8289d73137
commit
d9a4b4da8d
3 changed files with 13 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-02-06 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
|
* Headers/x11/xdnd.h: Declare two more functions used in xpbs.m.
|
||||||
|
* Tools/gpbs.m: Removed compiler warnings about mismatching declarations.
|
||||||
|
|
||||||
2006-01-29 Fred Kiefer <FredKiefer@gmx.de>
|
2006-01-29 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Source/cairo/CairoFontInfo.m (_cairo_extents_for_NSGlyph,
|
* Source/cairo/CairoFontInfo.m (_cairo_extents_for_NSGlyph,
|
||||||
|
|
|
@ -120,6 +120,7 @@ void xdnd_init (DndClass * dnd, Display * display);
|
||||||
void xdnd_set_dnd_aware (DndClass * dnd, Window window, Atom * typelist);
|
void xdnd_set_dnd_aware (DndClass * dnd, Window window, Atom * typelist);
|
||||||
int xdnd_is_dnd_aware (DndClass * dnd, Window window, int *version, Atom * typelist);
|
int xdnd_is_dnd_aware (DndClass * dnd, Window window, int *version, Atom * typelist);
|
||||||
void xdnd_set_type_list (DndClass * dnd, Window window, Atom * typelist);
|
void xdnd_set_type_list (DndClass * dnd, Window window, Atom * typelist);
|
||||||
|
void xdnd_get_type_list (DndClass * dnd, Window window, Atom ** typelist);
|
||||||
void xdnd_send_enter (DndClass * dnd, Window window, Window from, Atom * typelist);
|
void xdnd_send_enter (DndClass * dnd, Window window, Window from, Atom * typelist);
|
||||||
void xdnd_send_position (DndClass * dnd, Window window, Window from, Atom action, int x, int y, unsigned long etime);
|
void xdnd_send_position (DndClass * dnd, Window window, Window from, Atom action, int x, int y, unsigned long etime);
|
||||||
void xdnd_send_status (DndClass * dnd, Window window, Window from, int will_accept,
|
void xdnd_send_status (DndClass * dnd, Window window, Window from, int will_accept,
|
||||||
|
@ -128,6 +129,7 @@ void xdnd_send_leave (DndClass * dnd, Window window, Window from);
|
||||||
void xdnd_send_drop (DndClass * dnd, Window window, Window from, unsigned long etime);
|
void xdnd_send_drop (DndClass * dnd, Window window, Window from, unsigned long etime);
|
||||||
void xdnd_send_finished (DndClass * dnd, Window window, Window from, int error);
|
void xdnd_send_finished (DndClass * dnd, Window window, Window from, int error);
|
||||||
int xdnd_convert_selection (DndClass * dnd, Window window, Window requester, Atom type);
|
int xdnd_convert_selection (DndClass * dnd, Window window, Window requester, Atom type);
|
||||||
|
int xdnd_set_selection_owner (DndClass * dnd, Window window, Atom type);
|
||||||
void xdnd_selection_send (DndClass * dnd, XSelectionRequestEvent * request, unsigned char *data, int length);
|
void xdnd_selection_send (DndClass * dnd, XSelectionRequestEvent * request, unsigned char *data, int length);
|
||||||
|
|
||||||
#endif /* !_X_DND_H */
|
#endif /* !_X_DND_H */
|
||||||
|
|
10
Tools/gpbs.m
10
Tools/gpbs.m
|
@ -274,7 +274,7 @@ NSMutableDictionary *pasteboards = nil;
|
||||||
ASSIGN(data, d);
|
ASSIGN(data, d);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (id) type
|
- (NSString*) type
|
||||||
{
|
{
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
@ -367,7 +367,9 @@ NSMutableDictionary *pasteboards = nil;
|
||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) addTypes: newTypes owner: newOwner pasteboard: pb
|
- (void) addTypes: (NSArray*)newTypes
|
||||||
|
owner: (id)newOwner
|
||||||
|
pasteboard: (id)pb
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
BOOL wants = NO;
|
BOOL wants = NO;
|
||||||
|
@ -575,7 +577,7 @@ NSMutableDictionary *pasteboards = nil;
|
||||||
|
|
||||||
- (int) addTypes: (NSArray*)types
|
- (int) addTypes: (NSArray*)types
|
||||||
owner: (id)owner
|
owner: (id)owner
|
||||||
pasteboard: (id)pboard
|
pasteboard: (NSPasteboard*)pboard
|
||||||
oldCount: (int)count;
|
oldCount: (int)count;
|
||||||
- (NSString*) availableTypeFromArray: (NSArray*)types
|
- (NSString*) availableTypeFromArray: (NSArray*)types
|
||||||
changeCount: (int*)count;
|
changeCount: (int*)count;
|
||||||
|
@ -586,7 +588,7 @@ NSMutableDictionary *pasteboards = nil;
|
||||||
mustBeCurrent: (BOOL)flag;
|
mustBeCurrent: (BOOL)flag;
|
||||||
- (int) declareTypes: (NSArray*)types
|
- (int) declareTypes: (NSArray*)types
|
||||||
owner: (id)owner
|
owner: (id)owner
|
||||||
pasteboard: (id)pboard;
|
pasteboard: (NSPasteboard*)pboard;
|
||||||
- (PasteboardEntry*) entryByCount: (int)count;
|
- (PasteboardEntry*) entryByCount: (int)count;
|
||||||
- (NSString*) name;
|
- (NSString*) name;
|
||||||
- (void) releaseGlobally;
|
- (void) releaseGlobally;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue