You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
54 lines
1.8 KiB
/***************************************************************************
|
|
kmergetransactionsdlg.h
|
|
-------------------
|
|
begin : Sun Aug 20 2006
|
|
copyright : (C) 2006 by Ace Jones
|
|
email : <acejones@users.sf.net>
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 KMERGETRANSACTIONSDLG_H
|
|
#define KMERGETRANSACTIONSDLG_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
class TQResizeEvent;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <kdebug.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include <kmymoney/register.h>
|
|
#include <kmymoney/mymoneyaccount.h>
|
|
|
|
#include "../dialogs/kselecttransactionsdlg.h"
|
|
|
|
class KMergeTransactionsDlg: public KSelectTransactionsDlg
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
KMergeTransactionsDlg(const MyMoneyAccount& account, TQWidget* parent = 0, const char* name = 0);
|
|
|
|
bool eventFilter(TQObject* , TQEvent* ) { return false; }
|
|
|
|
public slots:
|
|
void slotHelp();
|
|
};
|
|
|
|
#endif // KMERGETRANSACTIONSDLG_H
|
|
// vim:cin:si:ai:et:ts=2:sw=2:
|