From 755c67f8e810270ead6209118c8e529d8d19a141 Mon Sep 17 00:00:00 2001 From: eseidel Date: Sun, 3 Jul 2005 07:03:14 +0000 Subject: [PATCH] Bug #: 3824 Submitted by: eseidel Reviewed by: mjs * ForwardingHeaders/qpair.h: Added. * kwq/KWQPair.h: Added. Qt compatible QPair, built on std::pair http://bugzilla.opendarwin.org/show_bug.cgi?id=3824 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@9574 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- WebCore/ChangeLog-2005-08-23 | 10 ++++++++++ WebCore/ForwardingHeaders/qpair.h | 1 + WebCore/kwq/KWQPair.h | 29 +++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 WebCore/ForwardingHeaders/qpair.h create mode 100644 WebCore/kwq/KWQPair.h diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23 index 3de5bd2ee12f..72cc194c10e8 100644 --- a/WebCore/ChangeLog-2005-08-23 +++ b/WebCore/ChangeLog-2005-08-23 @@ -1,3 +1,12 @@ +2005-07-03 Eric Seidel + + Reviewed by mjs. + + * ForwardingHeaders/qpair.h: Added. + * kwq/KWQPair.h: Added. + Qt compatible QPair, built on std::pair + http://bugzilla.opendarwin.org/show_bug.cgi?id=3824 + 2005-07-01 Beth Dakin Adding createCaption test for HTMLTableElement. @@ -80,6 +89,7 @@ * kwq/KWQSize.h: * kwq/KWQSize.mm: (QSize::operator CGSize): adding CGSize conversion support + http://bugzilla.opendarwin.org/show_bug.cgi?id=3669 2005-06-30 Bruce DiBello diff --git a/WebCore/ForwardingHeaders/qpair.h b/WebCore/ForwardingHeaders/qpair.h new file mode 100644 index 000000000000..3c92503f0952 --- /dev/null +++ b/WebCore/ForwardingHeaders/qpair.h @@ -0,0 +1 @@ +#include "KWQPair.h" diff --git a/WebCore/kwq/KWQPair.h b/WebCore/kwq/KWQPair.h new file mode 100644 index 000000000000..c73749f639a2 --- /dev/null +++ b/WebCore/kwq/KWQPair.h @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2005 Apple Computer, Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include + +#define QPair std::pair +#define qMakePair std::make_pair \ No newline at end of file -- 2.36.0