1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-02 22:25:48 +01:00

Small fix for an enum

This commit is contained in:
dan
2000-09-28 22:32:36 +00:00
parent 60a01b0f58
commit 539fb32795
2 changed files with 6 additions and 2 deletions

View File

@@ -193,6 +193,11 @@ enum {
};
enum {
WLNotFound = -1 /* element was not found in WMList */
};
/* drag operations */
typedef enum {
WDOperationNone,

View File

@@ -113,8 +113,7 @@ typedef enum {
enum {
WBNotFound = INT_MIN, /* element was not found in WMBag */
WANotFound = -1, /* element was not found in WMArray */
WLNotFound = -1 /* element was not found in WMList */
WANotFound = -1 /* element was not found in WMArray */
};