# HG changeset patch # User Frank Benoit # Date 1195406188 -3600 # Node ID 198c379caaa7978b29ec0a8cb6dc79a271a7ef6b # Parent 44c987465a203fd85a0cd54457fc786c5e6954b7 remove explicit tango import path diff -r 44c987465a20 -r 198c379caaa7 dbus-d/dsrc/dsss.conf --- a/dbus-d/dsrc/dsss.conf Fri Nov 09 16:17:32 2007 +0100 +++ b/dbus-d/dsrc/dsss.conf Sun Nov 18 18:16:28 2007 +0100 @@ -1,6 +1,5 @@ [test/client/DClient.d] - buildflags+=-I~/tango - buildflags+=-L-ldbus-1 +buildflags+=-L-ldbus-1 target=DClient.exe [org/freedesktop/dbus/tool/CreateInterface.d] diff -r 44c987465a20 -r 198c379caaa7 dbus-d/dsrc/org/freedesktop/dbus/tool/CreateInterface.d --- a/dbus-d/dsrc/org/freedesktop/dbus/tool/CreateInterface.d Fri Nov 09 16:17:32 2007 +0100 +++ b/dbus-d/dsrc/org/freedesktop/dbus/tool/CreateInterface.d Sun Nov 18 18:16:28 2007 +0100 @@ -2,7 +2,7 @@ * Copyright (C) 2007 Frank Benoit * * Licensed under the Academic Free License version 2.1 - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -12,7 +12,7 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -420,7 +420,7 @@ // STRUCT 114 (ASCII 'r'), 40 (ASCII '('), 41 (ASCII ')') Struct // VARIANT 118 (ASCII 'v') Variant type (the type of the value is part of the value itself) // DICT_ENTRY 101 (ASCII 'e'), 123 (ASCII '{'), 125 (ASCII '}') Entry in a dict or map (array of key-value pairs) -// +// void parseNode( Element el ){ @@ -433,7 +433,7 @@ } foreach( node; el.getChilds( ID_NODE )){ parseNode( node ); - } + } } void unknownElement( char[][] msg ... ){ @@ -809,7 +809,7 @@ p.newline; } class TextList { - + private char[] separator; private char[] sb; private char[] prefix; @@ -826,7 +826,7 @@ this.separator = separator; this.postfix = postfix; } - + public static TextList createParameterList(){ return new TextList( " ", ", ", " " ); }