[gnote: 7/21] Fix test sync addin after merge



commit 5107b2a4a49648138f416f518f6c9373ced45c3f
Author: Aurimas Černius <aurisc4 gmail com>
Date:   Sat Apr 1 22:01:36 2017 +0300

    Fix test sync addin after merge

 src/test/testsyncaddin.cpp |    6 +++---
 src/test/testsyncaddin.hpp |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/test/testsyncaddin.cpp b/src/test/testsyncaddin.cpp
index 3110d0e..37f1e95 100644
--- a/src/test/testsyncaddin.cpp
+++ b/src/test/testsyncaddin.cpp
@@ -1,7 +1,7 @@
 /*
  * gnote
  *
- * Copyright (C) 2014 Aurimas Cernius
+ * Copyright (C) 2017 Aurimas Cernius
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -51,12 +51,12 @@ bool SyncAddin::is_configured()
   return true;
 }
 
-std::string SyncAddin::name()
+Glib::ustring SyncAddin::name()
 {
   return "test";
 }
 
-std::string SyncAddin::id()
+Glib::ustring SyncAddin::id()
 {
   return "test";
 }
diff --git a/src/test/testsyncaddin.hpp b/src/test/testsyncaddin.hpp
index d4e4edc..c438794 100644
--- a/src/test/testsyncaddin.hpp
+++ b/src/test/testsyncaddin.hpp
@@ -1,7 +1,7 @@
 /*
  * gnote
  *
- * Copyright (C) 2014 Aurimas Cernius
+ * Copyright (C) 2017 Aurimas Cernius
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -38,8 +38,8 @@ public:
   virtual bool save_configuration() override;
   virtual void reset_configuration() override;
   virtual bool is_configured() override;
-  virtual std::string name() override;
-  virtual std::string id() override;
+  virtual Glib::ustring name() override;
+  virtual Glib::ustring id() override;
   virtual bool is_supported() override;
   virtual void initialize() override;
   virtual void shutdown() override;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]