From 729e5b7e993b5eecd80f8e1568d885feece70e08 Mon Sep 17 00:00:00 2001 From: David Faure Date: Fri, 7 Apr 2000 08:38:36 +0000 Subject: [PATCH] "konsole" -> "openterm", and called KRadioAction constructor that takes the icon name as argument - untested, shout if this gives a wrong size to the icon svn path=/trunk/kdebase/konsole/; revision=45854 --- src/konsole.C | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/konsole.C b/src/konsole.C index c8780771..df1ef8af 100644 --- a/src/konsole.C +++ b/src/konsole.C @@ -826,11 +826,10 @@ void Konsole::addSession(TESession* s) QString title = i18n("%1 No %2").arg(s->Title()).arg(session_no); char buffer[30]; sprintf(buffer,"%d",session_no); - KRadioAction *ra = new KRadioAction(title, 0, this, SLOT(activateSession()), this, buffer); + KRadioAction *ra = new KRadioAction(title, "openterm", 0, this, SLOT(activateSession()), this, buffer); ra->setExclusiveGroup("sessions"); ra->setChecked(true); - ra->setIconSet(SmallIcon("konsole")); action2session.insert(ra, s); session2action.insert(s,ra); ra->plug(m_sessions);