fix the stop slot, remove some redundant debug and cvs ignore

git-svn-id: svn://10.0.0.236/trunk@166367 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
zack%kde.org
2004-12-07 00:50:21 +00:00
parent 22211ea9c1
commit 8fdb25b422
2 changed files with 1 additions and 4 deletions

View File

@@ -417,9 +417,7 @@ QGeckoEmbed::reload(ReloadFlags flags)
bool
QGeckoEmbed::domKeyDownEvent(nsIDOMKeyEvent *keyEvent)
{
qDebug("key event start");
emit domKeyDown(keyEvent);
qDebug("key event stop");
return false;
}
@@ -434,7 +432,6 @@ bool
QGeckoEmbed::domKeyUpEvent(nsIDOMKeyEvent *keyEvent)
{
emit domKeyUp(keyEvent);
qDebug("key release event stop");
return false;
}

View File

@@ -34,7 +34,7 @@ MyMainWindow::MyMainWindow()
action = new QAction(QPixmap::fromMimeSource( "stop.png" ), tr("Stop"), CTRL + Key_S,
toolbar, "stop");
connect(action, SIGNAL(activated()), this, SLOT(stopLoad()));
connect(action, SIGNAL(activated()), this, SLOT(stop()));
action->addTo(toolbar);
location = new QLineEdit(toolbar);