Changeset 846 for trunk/src/dbus/qdbusmessage.cpp
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/dbus/qdbusmessage.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation ([email protected]) … … 54 54 #include "qdbusutil_p.h" 55 55 56 57 56 58 QT_BEGIN_NAMESPACE 57 59 … … 64 66 : msg(0), reply(0), type(DBUS_MESSAGE_TYPE_INVALID), 65 67 timeout(-1), localReply(0), ref(1), delayedReply(false), localMessage(false), 66 parametersValidated(false) 68 parametersValidated(false) 67 69 { 68 70 } … … 130 132 msg = q_dbus_message_new_method_call(data(d_ptr->service.toUtf8()), d_ptr->path.toUtf8(), 131 133 data(d_ptr->interface.toUtf8()), d_ptr->name.toUtf8()); 134 132 135 break; 133 136 case DBUS_MESSAGE_TYPE_METHOD_RETURN: … … 290 293 291 294 // no complex types seen 292 // optimi se by using the variant list itself295 // optimie by using the variant list itself 293 296 QDBusMessage retval; 294 297 QDBusMessagePrivate *d = retval.d_ptr; … … 450 453 } 451 454 452 // the reply must have a msg or be a local-loop optimi sation455 // the reply must have a msg or be a local-loop optimiation 453 456 Q_ASSERT(reply.d_ptr->reply || reply.d_ptr->localMessage); 454 457 return reply; … … 469 472 } 470 473 471 // the reply must have a msg or be a local-loop optimi sation474 // the reply must have a msg or be a local-loop optimiation 472 475 Q_ASSERT(reply.d_ptr->reply || reply.d_ptr->localMessage); 473 476 return reply; … … 642 645 { 643 646 return d_ptr->delayedReply; 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 644 686 } 645 687 … … 760 802 QT_END_NAMESPACE 761 803 804
Note:
See TracChangeset
for help on using the changeset viewer.