[refactor] code intent

This commit is contained in:
Julian Sparber
2017-10-02 20:34:06 +02:00
parent 3eb040a84b
commit d214334fee

View File

@@ -5,15 +5,19 @@
#include "teleport-app.h" #include "teleport-app.h"
#include "teleport-peer.h" #include "teleport-peer.h"
#define TELEPORT_APP_WINDOW_TYPE (teleport_app_window_get_type ()) #define TELEPORT_APP_WINDOW_TYPE (teleport_app_window_get_type ())
G_DECLARE_FINAL_TYPE (TeleportAppWindow, teleport_app_window, TELEPORT, APP_WINDOW, GtkApplicationWindow) G_DECLARE_FINAL_TYPE (TeleportAppWindow,
teleport_app_window,
TELEPORT,
APP_WINDOW,
GtkApplicationWindow)
TeleportAppWindow *teleport_app_window_new (TeleportApp *app); TeleportAppWindow *teleport_app_window_new (TeleportApp *app);
void teleport_app_window_open (TeleportAppWindow *win, void teleport_app_window_open (TeleportAppWindow *win,
GFile *file); GFile *file);
extern void update_remote_device_list(TeleportAppWindow *, Peer *); void update_remote_device_list (TeleportAppWindow *,
extern void update_remote_device_list_remove(TeleportAppWindow *, Peer *); Peer *);
void update_remote_device_list_remove (TeleportAppWindow *,
Peer *);
#endif /* __TELEPORT_WINDOW_H */ #endif /* __TELEPORT_WINDOW_H */