Bug 67946

Summary: keyboard shortcut ctrl+shift+O used twice
Product: [Applications] kdevelop Reporter: Daniel <db78>
Component: generalAssignee: KDevelop Developers <kdevelop-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 3.0.0b1   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Daniel 2003-11-12 00:47:06 UTC
Version:           3.0.0b1 (using KDE KDE 3.1.4)
Installed from:    Compiled From Sources
Compiler:          GCC 3.2 
OS:          Linux

By default ctrl+shift+O is set as both "Quick Open" and "All Output Views".
Comment 1 Alexander Dymo 2003-11-16 21:45:55 UTC
Subject: kdevelop/parts/quickopen

CVS commit by dymo: 

changed shortcut for "Open Class" to Ctrl+Alt+C
CCMAIL: 67946-done@bugs.kde.org


  M +1 -1      quickopen_part.cpp   1.6


--- kdevelop/parts/quickopen/quickopen_part.cpp  #1.5:1.6
@@ -50,5 +50,5 @@ QuickOpenPart::QuickOpenPart(QObject *pa
     m_actionQuickOpen->setWhatsThis(i18n("<b>Quick open</b><p>Provides a file name input form with completion listbox to quickly open file in a project."));
 
-    m_actionQuickOpenClass = new KAction( i18n("Find Class..."), CTRL + ALT + Key_O,
+    m_actionQuickOpenClass = new KAction( i18n("Find Class..."), CTRL + ALT + Key_C,
                                           this, SLOT(slotQuickOpenClass()),
                                           actionCollection(), "quick_open_class" );