1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Added .gitignore + Paste&Go action works now from menu.

This commit is contained in:
nowrep 2012-01-22 18:40:49 +01:00
parent 2d5266333e
commit e163a8cd81
3 changed files with 7692 additions and 0 deletions

18
.gitignore vendored Normal file
View File

@ -0,0 +1,18 @@
build
DEBIAN
tools_
QupZilla-old-src.tar.gz
*.deb
*.pro.user
headers*.tar.gz
license_template
Makefile*
TestPlugin-build
search_*
src-*
bin/qupzilla
bin/plugins/libExamplePlugin.so
*.autosave
bin/core
qupzilla.sh
git_revision

7673
src/data/data/ca-bundle.crt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -257,6 +257,7 @@ void LocationBar::contextMenuEvent(QContextMenuEvent* event)
if (!m_pasteAndGoAction) {
m_pasteAndGoAction = new QAction(QIcon::fromTheme("edit-paste"), tr("Paste And &Go"), this);
m_pasteAndGoAction->setShortcut(QKeySequence("Ctrl+Shift+V"));
connect(m_pasteAndGoAction, SIGNAL(triggered()), this, SLOT(pasteAndGo()));
}
if (!m_clearAction) {