keyboard: Remove unused code

This commit is contained in:
Dorota Czaplejewicz
2020-02-23 11:25:28 +00:00
parent da1f480f7a
commit 46cbaf8e87
2 changed files with 0 additions and 53 deletions

View File

@ -41,16 +41,6 @@
#include "src/layout.h"
#include "src/submission.h"
enum {
PROP_0,
PROP_LAST
};
/* since 2.91.5 GDK_DRAWABLE was removed and gdk_cairo_create takes
GdkWindow as the argument */
#ifndef GDK_DRAWABLE
#define GDK_DRAWABLE(x) (x)
#endif
typedef struct _EekGtkKeyboardPrivate
{
@ -329,8 +319,3 @@ eek_gtk_keyboard_new (LevelKeyboard *keyboard, EekboardContextService *eekservic
priv->submission = submission;
return GTK_WIDGET(ret);
}
EekRenderer *eek_gtk_keyboard_get_renderer(EekGtkKeyboard *self) {
EekGtkKeyboardPrivate *priv = eek_gtk_keyboard_get_instance_private (self);
return priv->renderer;
}