This website works better with JavaScript.
Home
Explore
Help
Sign In
yigitcolakoglu
/
mconnect
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
3
Wiki
Activity
Browse Source
ping, battery, mousepad: make packet types public
bboozzoo/wip
Maciek Borzecki
8 years ago
parent
90e48f2333
commit
95c16fed52
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/mconnect/battery.vala
+1
-1
src/mconnect/mousepad.vala
+1
-1
src/mconnect/ping.vala
+ 1
- 1
src/mconnect/battery.vala
View File
@ -20,7 +20,7 @@
class BatteryHandler : Object, PacketHandlerInterface {
p
rivate
const string BATTERY = "kdeconnect.battery";
p
ublic
const string BATTERY = "kdeconnect.battery";
public string get_pkt_type() {
return BATTERY;
+ 1
- 1
src/mconnect/mousepad.vala
View File
@ -20,7 +20,7 @@
class MousepadHandler : Object, PacketHandlerInterface {
p
rivate
const string MOUSEPAD = "kdeconnect.mousepad";
p
ublic
const string MOUSEPAD = "kdeconnect.mousepad";
private Gdk.Display _display;
+ 1
- 1
src/mconnect/ping.vala
View File
@ -20,7 +20,7 @@
class PingHandler : Object, PacketHandlerInterface {
p
rivate
const string PING = "kdeconnect.ping";
p
ublic
const string PING = "kdeconnect.ping";
public string get_pkt_type() {
return PING;
Write
Preview
Loading…
Cancel
Save