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
config, core, devicemanager: cleanup valac warnings
bboozzoo/dbus-support-interfaces
Maciek Borzecki
8 years ago
parent
d8bc0f851b
commit
9753a21c29
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/config.vala
+1
-1
src/mconnect/core.vala
+1
-1
src/mconnect/devicemanager.vala
+ 1
- 1
src/mconnect/config.vala
View File
@ -19,7 +19,7 @@
*/
public class Config : Object {
public
static
const string FILE = "mconnect.conf";
public const string FILE = "mconnect.conf";
private KeyFile _kf = null;
+ 1
- 1
src/mconnect/core.vala
View File
@ -21,7 +21,7 @@ using Mconn;
class Core : Object {
public
static
const string APP_NAME = "mconnect";
public const string APP_NAME = "mconnect";
public Crypt crypt { get; private set; default = null; }
+ 1
- 1
src/mconnect/devicemanager.vala
View File
@ -21,7 +21,7 @@ using Gee;
class DeviceManager : GLib.Object
{
public
static
const string DEVICES_CACHE_FILE = "devices";
public const string DEVICES_CACHE_FILE = "devices";
private HashMap<string, Device> devices;
Write
Preview
Loading…
Cancel
Save