summaryrefslogtreecommitdiffstats
path: root/src/pedro/work
diff options
context:
space:
mode:
authordaleharvey <daleharvey@users.sourceforge.net>2006-06-24 01:37:00 +0000
committerdaleharvey <daleharvey@users.sourceforge.net>2006-06-24 01:37:00 +0000
commit5893e0c1d3c1c8935f8e1975619c1f4e8f08a969 (patch)
tree8fd4a749c522d4cbc3b5a563f37fbe17ac672c75 /src/pedro/work
parentAdd missing tutorial, update. (diff)
downloadinkscape-5893e0c1d3c1c8935f8e1975619c1f4e8f08a969.tar.gz
inkscape-5893e0c1d3c1c8935f8e1975619c1f4e8f08a969.zip
small changes to allow compilation on windows
(bzr r1272)
Diffstat (limited to 'src/pedro/work')
-rw-r--r--src/pedro/work/filerec.cpp5
-rw-r--r--src/pedro/work/groupchat.cpp12
2 files changed, 11 insertions, 6 deletions
diff --git a/src/pedro/work/filerec.cpp b/src/pedro/work/filerec.cpp
index 9fc8b8647..01d9b6bd8 100644
--- a/src/pedro/work/filerec.cpp
+++ b/src/pedro/work/filerec.cpp
@@ -102,7 +102,8 @@ bool doTest()
}
printf("#####GOT A FILE\n");
-
+/*
+TODO: Just Commented out to compile
if (!client.fileReceive(listener.from,
listener.iqId,
listener.streamId,
@@ -112,7 +113,7 @@ bool doTest()
{
return false;
}
-
+*/
client.pause(1000000);
client.disconnect();
diff --git a/src/pedro/work/groupchat.cpp b/src/pedro/work/groupchat.cpp
index 38a17abb6..6c2e186d9 100644
--- a/src/pedro/work/groupchat.cpp
+++ b/src/pedro/work/groupchat.cpp
@@ -53,7 +53,8 @@ public:
{
printf("PRESENCE\n");
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence : %s\n", evt.getPresence().c_str());
+ //printf("presence : %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}
case Pedro::XmppEvent::EVENT_MUC_MESSAGE:
@@ -66,7 +67,8 @@ public:
printf("MUC JOIN\n");
printf("group: %s\n", evt.getGroup().c_str());
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence: %s\n", evt.getPresence().c_str());
+ //printf("presence: %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}
case Pedro::XmppEvent::EVENT_MUC_LEAVE:
@@ -74,7 +76,8 @@ public:
printf("MUC LEAVE\n");
printf("group: %s\n", evt.getGroup().c_str());
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence: %s\n", evt.getPresence().c_str());
+ //printf("presence: %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}
case Pedro::XmppEvent::EVENT_MUC_PRESENCE:
@@ -82,7 +85,8 @@ public:
printf("MUC PRESENCE\n");
printf("group : %s\n", evt.getGroup().c_str());
printf("from : %s\n", evt.getFrom().c_str());
- printf("presence: %s\n", evt.getPresence().c_str());
+ //printf("presence: %s\n", evt.getPresence().c_str());
+ // TODO: Just Commented out to compile
break;
}