debugger: rework 'Run to Outermost Function' feature

Remove from the debug menu, and assign Ctrl-F6 to it by default also
on non-Mac.
This commit is contained in:
hjk
2011-02-02 11:52:39 +01:00
parent c40e582740
commit face88a3d2
3 changed files with 121 additions and 104 deletions

View File

@@ -1996,7 +1996,7 @@ void testTypedef()
++k;
++t1;
++t2;
};
}
void testConditional(const QString &str)
{
@@ -2019,7 +2019,10 @@ void testChar()
void testStuff()
{
typedef unsigned char byte;
byte f = '2';
testConditional("foo");
testConditional(fooxx());
testConditional("bar");
testConditional("zzz");
Foo *f1 = new Foo(1);