summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ivy/IvyApplication.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ivy/IvyApplication.h b/Ivy/IvyApplication.h
index 61b4432..7171fef 100644
--- a/Ivy/IvyApplication.h
+++ b/Ivy/IvyApplication.h
@@ -60,15 +60,15 @@ public:
// Implementation
protected:
- string appname;
+ ivy::string appname;
bool AppConnectedCallbackCalled;
Ivy *bus;
/* liste des souscriptions remote */
#ifdef USE_PCRE
static const int max_subexp = 200;
- typedef vector<pcre *> RegexpVector;
+ typedef ivy::vector<pcre *> RegexpVector;
#else
- typedef vector<Regexp *> RegexpVector;
+ typedef ivy::vector<Regexp *> RegexpVector;
#endif
RegexpVector regexp_in;