author | drw <drw> | 2005-06-15 22:56:39 (UTC) |
---|---|---|
committer | drw <drw> | 2005-06-15 22:56:39 (UTC) |
commit | f461773acd6e6d6c58d9ac0acea7600c1e341faf (patch) (side-by-side diff) | |
tree | 7c3f157a94c620df3ba8bfc6e7f6089c8a93cdf6 | |
parent | 7ff2e7bd4620a574f3ff22a951a5904310cfd920 (diff) | |
download | opie-f461773acd6e6d6c58d9ac0acea7600c1e341faf.zip opie-f461773acd6e6d6c58d9ac0acea7600c1e341faf.tar.gz opie-f461773acd6e6d6c58d9ac0acea7600c1e341faf.tar.bz2 |
Forgot to remove include
-rw-r--r-- | noncore/apps/dagger/navbar.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/noncore/apps/dagger/navbar.cpp b/noncore/apps/dagger/navbar.cpp index b28c677..62a8a95 100644 --- a/noncore/apps/dagger/navbar.cpp +++ b/noncore/apps/dagger/navbar.cpp @@ -1,47 +1,46 @@ /* Dagger - A Bible study program utilizing the Sword library. Copyright (c) 2004 Dan Williams <drw@handhelds.org> This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "navbar.h" #include <opie2/oresource.h> #include <qpe/config.h> -#include <qpe/resource.h> #include <qaction.h> #include <qlineedit.h> #include <qwhatsthis.h> NavBar::NavBar( QMainWindow *parent ) : QToolBar( QString::null, parent, QMainWindow::Top, true ) { // Initialize UI m_actionPrevPage = new QAction( tr( "Previous page" ), Opie::Core::OResource::loadPixmap( "fastback", Opie::Core::OResource::SmallIcon ), QString::null, 0, this, 0 ); m_actionPrevPage->setWhatsThis( tr( "Tap here to scroll backward one page." ) ); m_actionPrevPage->addTo( this ); connect( m_actionPrevPage, SIGNAL(activated()), this, SIGNAL(prevPage()) ); m_actionPrevVerse = new QAction( tr( "Previous verse" ), Opie::Core::OResource::loadPixmap( "back", Opie::Core::OResource::SmallIcon ), QString::null, 0, this, 0 ); m_actionPrevVerse->setWhatsThis( tr( "Tap here to scroll backward one verse." ) ); m_actionPrevVerse->addTo( this ); connect( m_actionPrevVerse, SIGNAL(activated()), this, SIGNAL(prevVerse()) ); m_key = new QLineEdit( this ); |