diff options
| author | daleharvey <daleharvey@users.sourceforge.net> | 2006-06-24 01:37:00 +0000 |
|---|---|---|
| committer | daleharvey <daleharvey@users.sourceforge.net> | 2006-06-24 01:37:00 +0000 |
| commit | 5893e0c1d3c1c8935f8e1975619c1f4e8f08a969 (patch) | |
| tree | 8fd4a749c522d4cbc3b5a563f37fbe17ac672c75 /src | |
| parent | Add missing tutorial, update. (diff) | |
| download | inkscape-5893e0c1d3c1c8935f8e1975619c1f4e8f08a969.tar.gz inkscape-5893e0c1d3c1c8935f8e1975619c1f4e8f08a969.zip | |
small changes to allow compilation on windows
(bzr r1272)
Diffstat (limited to 'src')
| -rw-r--r-- | src/make.exclude | 26 | ||||
| -rw-r--r-- | src/pedro/work/filerec.cpp | 5 | ||||
| -rw-r--r-- | src/pedro/work/groupchat.cpp | 12 |
3 files changed, 24 insertions, 19 deletions
diff --git a/src/make.exclude b/src/make.exclude index 6ac66cc77..e23adc6c3 100644 --- a/src/make.exclude +++ b/src/make.exclude @@ -39,7 +39,6 @@ libnr/nr-types-test.cpp livarot/Path-test.cpp main.cpp mod360-test.cpp -pedro trace/potrace/potest.cpp round-test.cpp sp-gradient-test.cpp @@ -57,24 +56,25 @@ io/streamtest.cpp # For the moment, DO NOT remove these from cvs # until those files compile everywhere ############################################### -# Uncomment the following to prevent building with Loudmouth -############################################### -dialogs/whiteboard-connect-dialog.cpp -dialogs/whiteboard-common-dialog.cpp -dialogs/whiteboard-sharewithchat-dialog.cpp -dialogs/whiteboard-sharewithuser-dialog.cpp -jabber_whiteboard ui/dialog/session-player.cpp ui/dialog/whiteboard-connect.cpp ui/dialog/whiteboard-sharewithchat.cpp ui/dialog/whiteboard-sharewithuser.cpp +dialogs/whiteboard-connect-dialog.cpp +dialogs/whiteboard-common-dialog.cpp +dialogs/whiteboard-sharewithchat-dialog.cpp +dialogs/whiteboard-sharewithuser-dialog.cpp + ############################################### -# Uncomment the following to prevent building with Pedro +# Uncomment the following to prevent building with Loudmouth ############################################### -jabber_whiteboard/pedroxmpp.h -jabber_whiteboard/pedrodom.h -jabber_whiteboard/pedroxmpp.cpp -jabber_whiteboard/pedrodom.cpp +jabber_whiteboard/node-tracker.cpp +jabber_whiteboard/inkboard-session.h +jabber_whiteboard/message-verifier.h +jabber_whiteboard/node-tracker.h +jabber_whiteboard/node-utilities.h +jabber_whiteboard/inkboard-session.cpp +jabber_whiteboard/node-utilities.cpp ############################################### # Various test harnesses in removeoverlap 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; } |
