summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2015-12-28 16:44:53 -0500
committerAllen Winter <allen.winter@kdab.com>2015-12-28 16:44:53 -0500
commit6c4af23b0a95fd105f38e879908cbc80390f3716 (patch)
treef171663232a5f34c9ff496cfc25825bf4f208e5d
parent63a67bc6ad7d124d7994ed24adfc03fcfbed08cb (diff)
downloadlibical-git-6c4af23b0a95fd105f38e879908cbc80390f3716.tar.gz
libicalss/icalbdbset_cxx.h - fix compile found by abi-compliance-checkerv2.0.0
-rw-r--r--src/libicalss/icalbdbset_cxx.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/libicalss/icalbdbset_cxx.h b/src/libicalss/icalbdbset_cxx.h
index 050114fa..cbfb009f 100644
--- a/src/libicalss/icalbdbset_cxx.h
+++ b/src/libicalss/icalbdbset_cxx.h
@@ -22,6 +22,8 @@
#include "libical_icalss_export.h"
+#include <string>
+
namespace LibICal
{
@@ -33,14 +35,14 @@ namespace LibICal
ICalBDBSet();
ICalBDBSet(const ICalBDBSet &);
- ICalBDBSet(const string &path, int flags);
+ ICalBDBSet(const std::string &path, int flags);
ICalBDBSet operator=(const ICalBDBSet &);
~ICalBDBSet();
public:
void free();
- string path();
+ std::string path();
icalerrorenum add_component(VComponent *child);
icalerrorenum remove_component(VComponent *child);
@@ -52,9 +54,9 @@ namespace LibICal
void clear();
// Get and search for a component by uid
- VComponent *fetch(string &uid);
+ VComponent *fetch(std::string &uid);
VComponent *fetch_match(icalcomponent *c);
- int has_uid(string &uid);
+ int has_uid(std::string &uid);
// Iterate through components. If a guage has been defined, these
// will skip over components that do not pass the gauge