]> git.sesse.net Git - kdenlive/commitdiff
use appropriate icons
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 3 Jun 2008 17:33:12 +0000 (17:33 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 3 Jun 2008 17:33:12 +0000 (17:33 +0000)
svn path=/branches/KDE4/; revision=2227

src/kdenliveui.rc
src/mainwindow.cpp

index 302bbc6f42000be95e109c375ad22423f8468f86..218d444545ff300b753186b6e0a484e67f9f628b 100644 (file)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
-<gui name="kdenlive" version="16">
+<gui name="kdenlive" version="17">
   <ToolBar name="extraToolBar" >
     <text>Extra Toolbar</text>
-    <Action name="clear" />
+       <Action name="project_render" />
   </ToolBar>
 
   <MenuBar>
index c032f136fd14ce2b46c77c1169a0b79df17f8407..1f7a327ca8b154c601159de00142194488511dc0 100644 (file)
@@ -432,21 +432,15 @@ void MainWindow::setupActions() {
     actionCollection()->addAction("select_tool", m_buttonSelectTool);
     actionCollection()->addAction("razor_tool", m_buttonRazorTool);
 
-    KAction* clearAction = new KAction(KIcon("document-new"), i18n("Clear"), this);
-    clearAction->setShortcut(Qt::CTRL + Qt::Key_W);
-    actionCollection()->addAction("clear", clearAction);
-    /*connect(clearAction, SIGNAL(triggered(bool)),
-            textArea, SLOT(clear()));*/
-
     KAction* profilesAction = new KAction(KIcon("document-new"), i18n("Manage Profiles"), this);
     actionCollection()->addAction("manage_profiles", profilesAction);
     connect(profilesAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProfiles()));
 
-    KAction* projectAction = new KAction(KIcon("document-new"), i18n("Project Settings"), this);
+    KAction* projectAction = new KAction(KIcon("configure"), i18n("Project Settings"), this);
     actionCollection()->addAction("project_settings", projectAction);
     connect(projectAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProjectSettings()));
 
-    KAction* projectRender = new KAction(KIcon("document-new"), i18n("Render Project"), this);
+    KAction* projectRender = new KAction(KIcon("media-record"), i18n("Render"), this);
     actionCollection()->addAction("project_render", projectRender);
     connect(projectRender, SIGNAL(triggered(bool)), this, SLOT(slotRenderProject()));