From 89d8c2baa9b51d8da8511a54b9962155aa29c4c0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 1 Feb 2013 17:25:32 -0600 Subject: Fix FTBFS --- kmymoney2/dialogs/tderecentfileitem.h | 56 +++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 kmymoney2/dialogs/tderecentfileitem.h (limited to 'kmymoney2/dialogs/tderecentfileitem.h') diff --git a/kmymoney2/dialogs/tderecentfileitem.h b/kmymoney2/dialogs/tderecentfileitem.h new file mode 100644 index 0000000..bc89c48 --- /dev/null +++ b/kmymoney2/dialogs/tderecentfileitem.h @@ -0,0 +1,56 @@ +/*************************************************************************** + krecentfileitem.h - description + ------------------- + begin : Wed Jul 30 2003 + copyright : (C) 2000-2003 by Michael Edwardes + email : mte@users.sourceforge.net + Javier Campos Morales + Felix Rodriguez + John C + Thomas Baumgart + Kevin Tambascio + ***************************************************************************/ + +/*************************************************************************** + * * + * This program 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. * + * * + ***************************************************************************/ +#ifndef KRECENTFILEITEM_H +#define KRECENTFILEITEM_H + +// ---------------------------------------------------------------------------- +// QT Includes +#include +#include + +// ---------------------------------------------------------------------------- +// KDE Includes +#include + +// ---------------------------------------------------------------------------- +// Project Includes + + + +/** + * @author Michael Edwardes + */ + +class TDERecentFileItem : public TQIconViewItem { +public: + TDERecentFileItem(const TQString& url, TQIconView* parent, const TQString& text, const TQPixmap& icon); + ~TDERecentFileItem(); + TQString fileURL(void) const { return m_url; } + + bool move( int x, int y ); + +private: + TQString m_url; + TQWidget* m_parent; +}; + +#endif -- cgit v1.2.1