Ignore:
Timestamp:
Feb 11, 2010, 11:19:06 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.1 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/dbus/qdbuserror.cpp

    r2 r561  
    22**
    33** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
    4 ** Contact: Qt Software Information (qt-info@nokia.com)
     4** All rights reserved.
     5** Contact: Nokia Corporation (qt-info@nokia.com)
    56**
    67** This file is part of the QtDBus module of the Qt Toolkit.
     
    2122** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
    2223**
    23 ** In addition, as a special exception, Nokia gives you certain
    24 ** additional rights. These rights are described in the Nokia Qt LGPL
    25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
    26 ** package.
     24** In addition, as a special exception, Nokia gives you certain additional
     25** rights.  These rights are described in the Nokia Qt LGPL Exception
     26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
    2727**
    2828** GNU General Public License Usage
     
    3434** met: http://www.gnu.org/copyleft/gpl.html.
    3535**
    36 ** If you are unsure which license is appropriate for your use, please
    37 ** contact the sales department at qt-sales@nokia.com.
     36** If you have questions regarding the use of this file, please contact
     37** Nokia at qt-info@nokia.com.
    3838** $QT_END_LICENSE$
    3939**
     
    4545#include <qvarlengtharray.h>
    4646
    47 #include <qdbus_symbols_p.h>
     47#include "qdbus_symbols_p.h"
    4848#include "qdbusmessage.h"
    4949#include "qdbusmessage_p.h"
     
    9292com.trolltech.QtDBus.Error.InternalError
    9393org.freedesktop.DBus.Error.UnknownObject
     94com.trolltech.QtDBus.Error.InvalidService
     95com.trolltech.QtDBus.Error.InvalidObjectPath
     96com.trolltech.QtDBus.Error.InvalidInterface
     97com.trolltech.QtDBus.Error.InvalidMember
    9498*/
    9599
     
    117121    "com.trolltech.QtDBus.Error.InternalError\0"
    118122    "org.freedesktop.DBus.Error.UnknownObject\0"
     123    "com.trolltech.QtDBus.Error.InvalidService\0"
     124    "com.trolltech.QtDBus.Error.InvalidObjectPath\0"
     125    "com.trolltech.QtDBus.Error.InvalidInterface\0"
     126    "com.trolltech.QtDBus.Error.InvalidMember\0"
    119127    "\0";
    120128
     
    122130       0,    6,   40,   76,  118,  153,  191,  231,
    123131     273,  313,  349,  384,  421,  461,  501,  540,
    124      581,  617,  661,  705,  746,    0
     132     581,  617,  661,  705,  746,  787,  829,  874,
     133     918,    0
    125134};
    126135
     
    217226    \value InternalError        An internal error occurred
    218227                                (\c com.trolltech.QtDBus.Error.InternalError)
     228
     229    \value InvalidObjectPath    The object path provided is invalid.
     230
     231    \value InvalidService       The service requested is invalid.
     232
     233    \value InvalidMember        The member is invalid.
     234
     235    \value InvalidInterface     The interface is invalid.
     236
    219237    \value UnknownObject        The remote object could not be found.
    220 
    221238*/
    222239
     
    340357QDebug operator<<(QDebug dbg, const QDBusError &msg)
    341358{
    342     dbg.nospace() << "QDBusError(" << msg.name() << ", " << msg.message() << ")";
     359    dbg.nospace() << "QDBusError(" << msg.name() << ", " << msg.message() << ')';
    343360    return dbg.space();
    344361}
Note: See TracChangeset for help on using the changeset viewer.