From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RCgYA-0006UX-WE for garchives@archives.gentoo.org; Sat, 08 Oct 2011 23:43:27 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 491A721C105; Sat, 8 Oct 2011 23:43:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 118B121C105 for ; Sat, 8 Oct 2011 23:43:18 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80F521B4010 for ; Sat, 8 Oct 2011 23:43:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D24D98004B for ; Sat, 8 Oct 2011 23:43:17 +0000 (UTC) From: "Theofilos Intzoglou" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theofilos Intzoglou" Message-ID: <80effa9443f3310f4b668d99837b95c3c2feda78.parapente@gentoo> Subject: [gentoo-commits] proj/c-portage:cmake_port commit in: src/Qt/ X-VCS-Repository: proj/c-portage X-VCS-Files: src/Qt/helper.cpp src/Qt/helper.h X-VCS-Directories: src/Qt/ X-VCS-Committer: parapente X-VCS-Committer-Name: Theofilos Intzoglou X-VCS-Revision: 80effa9443f3310f4b668d99837b95c3c2feda78 Date: Sat, 8 Oct 2011 23:43:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 8168bb52df219f1ff664ada377ce0874 commit: 80effa9443f3310f4b668d99837b95c3c2feda78 Author: Theofilos Intzoglou gmail com> AuthorDate: Sat Oct 8 23:41:21 2011 +0000 Commit: Theofilos Intzoglou gmail com> CommitDate: Sat Oct 8 23:41:21 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/c-portage.git= ;a=3Dcommit;h=3D80effa94 Add some helper function used mostly for convertions between datatypes --- src/Qt/helper.cpp | 28 ++++++++++++++++++++++++++++ src/Qt/helper.h | 5 +++++ 2 files changed, 33 insertions(+), 0 deletions(-) diff --git a/src/Qt/helper.cpp b/src/Qt/helper.cpp new file mode 100644 index 0000000..93a00fe --- /dev/null +++ b/src/Qt/helper.cpp @@ -0,0 +1,28 @@ +#include "helper.h" +#include + +QStringList CListToQStringList(StringList *clist) +{ + QStringList list; + =20 + for (int i=3D0; i +#include + +QStringList CListToQStringList(StringList *); +StringList* QStringListToCList(const QStringList&); \ No newline at end of file