summaryrefslogtreecommitdiff
path: root/inputmethods/multikey/keyboard.h
authormickeyl <mickeyl>2004-05-14 15:47:06 (UTC)
committer mickeyl <mickeyl>2004-05-14 15:47:06 (UTC)
commit3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a (patch) (side-by-side diff)
tree1d7ce18cc0e543d8c07d08ec3b63734fe73f61a4 /inputmethods/multikey/keyboard.h
parenta9c907c218d106727ad3879a125c77ae7900635f (diff)
downloadopie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.zip
opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.tar.gz
opie-3378aa3bfa5fc0e9e664ae5d3800107c790dfc5a.tar.bz2
CLEANUP: Don't include header files via relative paths
Note: Remember to rm stamp-headers
Diffstat (limited to 'inputmethods/multikey/keyboard.h') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/multikey/keyboard.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/inputmethods/multikey/keyboard.h b/inputmethods/multikey/keyboard.h
index 0b56988..77bf718 100644
--- a/inputmethods/multikey/keyboard.h
+++ b/inputmethods/multikey/keyboard.h
@@ -1,47 +1,47 @@
/**********************************************************************
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
** This file is part of Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#include <qframe.h>
#include <qmap.h>
-#include "../pickboard/pickboardcfg.h"
-#include "../pickboard/pickboardpicks.h"
+#include <pickboardcfg.h>
+#include <pickboardpicks.h>
#include "configdlg.h"
class QTimer;
namespace MultiKey
{
class KeyboardConfig : public DictFilterConfig
{
public:
KeyboardConfig(PickboardPicks* p) : DictFilterConfig(p), backspaces(0) { nrows = 1; }
virtual void generateText(const QString &s);
void decBackspaces() { if (backspaces) backspaces--; }
void incBackspaces() { backspaces++; }
void resetBackspaces() { backspaces = 0; }
private:
int backspaces;
};
class KeyboardPicks : public PickboardPicks
{
Q_OBJECT
public: