Changes to make the linter happy

pull/389/head
Jesse Vincent 7 years ago
parent 437a349288
commit 2e3b93d03d
No known key found for this signature in database
GPG Key ID: 122F5DF7108E4046

@ -193,7 +193,7 @@ TypingBreaks::focusHook (const char *command) {
EEPROM.put (settingsBase, settings); EEPROM.put (settingsBase, settings);
return true; return true;
} }
}; } // namespace KaleidoscopePlugins
KaleidoscopePlugins::TypingBreaks TypingBreaks; KaleidoscopePlugins::TypingBreaks TypingBreaks;

@ -25,7 +25,7 @@ class TypingBreaks : public KaleidoscopePlugin {
public: public:
TypingBreaks (void); TypingBreaks (void);
virtual void begin (void) final; void begin (void) final;
static void enableEEPROM (void); static void enableEEPROM (void);
static bool focusHook (const char *command); static bool focusHook (const char *command);
@ -50,8 +50,8 @@ class TypingBreaks : public KaleidoscopePlugin {
static uint16_t settingsBase; static uint16_t settingsBase;
static Key eventHandlerHook (Key mappedKey, byte row, byte col, uint8_t keyState); static Key eventHandlerHook (Key mappedKey, byte row, byte col, uint8_t keyState);
}; }
}; } // namespace KaleidoscopePlugins
extern KaleidoscopePlugins::TypingBreaks TypingBreaks; extern KaleidoscopePlugins::TypingBreaks TypingBreaks;

Loading…
Cancel
Save