From 1c9154e8f4da88df6fda2c519d2feb33eee20430 Mon Sep 17 00:00:00 2001 From: Ingo Klcker Date: Mon, 29 Sep 2003 20:53:45 +0000 Subject: [PATCH] Pass the actual list name to the manager and not the name the user entered. svn path=/trunk/kdepim/; revision=254946 --- kmaddrbook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmaddrbook.cpp b/kmaddrbook.cpp index 09e5a4ba1..d37ca71c4 100644 --- a/kmaddrbook.cpp +++ b/kmaddrbook.cpp @@ -117,7 +117,7 @@ QString KabcBridge::expandDistributionList( const QString& listName ) for ( QStringList::Iterator it = listNames.begin(); it != listNames.end(); ++it) { if ( (*it).lower() == lowerListName ) { - QStringList addressList = manager.list( listName )->emails(); + QStringList addressList = manager.list( *it )->emails(); return addressList.join( ", " ); } }