Skip to content

Commit 4531c67

Browse files
committed
SystemKit: fixed build after last change
1 parent a872cbe commit 4531c67

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

Frameworks/SystemKit/OSEKeyboard.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
*/
2727

2828
#import <Foundation/Foundation.h>
29-
#import <SystemKit/OSEDefaults.h>
29+
30+
@class OSEDefaults;
3031

3132
#define XKB_BASE_LST @"/usr/share/X11/xkb/rules/base.lst"
3233

Frameworks/SystemKit/OSEKeyboard.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
2020
//
2121

22+
#import "OSEDefaults.h"
2223
#import "OSEKeyboard.h"
24+
2325
#include <X11/XKBlib.h>
2426
#include <X11/extensions/XKBrules.h>
2527

Frameworks/SystemKit/OSEMouse.h

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,17 @@
2727
*/
2828

2929
#import <Foundation/Foundation.h>
30-
#import <SystemKit/OSEDefaults.h>
30+
31+
@class OSEDefaults;
3132

3233
@interface OSEMouse : NSObject
3334
{
34-
NSUserDefaults *gsDefaults;
35-
OSEDefaults *nxDefaults;
36-
NSMutableDictionary *wmDefaults;
37-
NSString *wmDefaultsPath;
38-
39-
NSInteger acceleration;
35+
NSUserDefaults *gsDefaults;
36+
OSEDefaults *nxDefaults;
37+
NSMutableDictionary *wmDefaults;
38+
NSString *wmDefaultsPath;
39+
40+
NSInteger acceleration;
4041
NSInteger threshold;
4142
NSInteger doubleClickTime;
4243
NSInteger wheelScrollLines;

Frameworks/SystemKit/OSEMouse.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
2020
//
2121

22+
#import "OSEDefaults.h"
2223
#import "OSEMouse.h"
2324

2425
#import <X11/Xlib.h>

0 commit comments

Comments
 (0)