From c3f8ee64e905cdb103b5bfa07525fb4e85c31120 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 24 Jul 2013 11:49:27 -0500 Subject: Initial import of kasablanca 0.4.0.2 --- src/fileexistsdialog.cpp | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/fileexistsdialog.cpp (limited to 'src/fileexistsdialog.cpp') diff --git a/src/fileexistsdialog.cpp b/src/fileexistsdialog.cpp new file mode 100644 index 0000000..284f9b4 --- /dev/null +++ b/src/fileexistsdialog.cpp @@ -0,0 +1,44 @@ +/*************************************************************************** + fileexistsdialog.cpp - description + ------------------- + begin : Mi Nov 19 2003 + copyright : (C) 2003 by mkulke + email : sikor_sxe@radicalapproach.de + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +#include "fileexistsdialog.h" + +FileExistsDialog::FileExistsDialog(QWidget *parent, const char *name ) : KasablancaFileExistsDialog(parent,name) +{ +} +FileExistsDialog::~FileExistsDialog(){ +} + +void FileExistsDialog::Overwrite() +{ + done(overwrite); +} + +void FileExistsDialog::Resume() +{ + done(resume); +} + +void FileExistsDialog::Skip() +{ + done(skip); +} + +void FileExistsDialog::Rename() +{ + done(rename); +} -- cgit v1.2.1