summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/diff/kfile_diff.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:05:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:05:39 -0600
commitff94d46e423398804d2ae63faeb114c2cf604fc4 (patch)
tree4481ffd491d15ac15081cea46d7cc298ef6351a4 /kfile-plugins/diff/kfile_diff.h
parentb9553cef2a3cd9f5b89c8aca6f4b7781a079dbb7 (diff)
downloadtdesdk-ff94d46e423398804d2ae63faeb114c2cf604fc4.tar.gz
tdesdk-ff94d46e423398804d2ae63faeb114c2cf604fc4.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kfile-plugins/diff/kfile_diff.h')
-rw-r--r--kfile-plugins/diff/kfile_diff.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/kfile-plugins/diff/kfile_diff.h b/kfile-plugins/diff/kfile_diff.h
deleted file mode 100644
index 5249a8ac..00000000
--- a/kfile-plugins/diff/kfile_diff.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/**************************************************************************
-** kfile_diff.h
-** -------------------
-** begin : Sun Jan 20 23:25:29 2002
-** copyright : (C) 2002 by Otto Bruggeman
-** email : otto.bruggeman@home.nl
-**
-***************************************************************************/
-/***************************************************************************
-**
-** 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 __KFILE_PDF_H__
-#define __KFILE_PDF_H__
-
-#include <kfilemetainfo.h>
-
-class TQStringList;
-
-class KDiffPlugin: public KFilePlugin
-{
- Q_OBJECT
-
-
-public:
- KDiffPlugin( TQObject *parent, const char *name,
- const TQStringList& preferredItems );
-
-
- virtual bool readInfo( KFileMetaInfo& info, uint what );
-
-public:
- enum Format { Context, Ed, Normal, RCS, Unified, Empty, SideBySide, Unknown };
- enum DiffProgram { CVSDiff, Diff, Diff3, Perforce, SubVersion, Undeterminable }; // cant use Unknown again :(
-
-private:
- enum Format determineDiffFormat ( const TQStringList lines ) const;
- enum DiffProgram determineDiffProgram ( const TQStringList lines ) const;
- const TQString determineI18nedFormat ( enum KDiffPlugin::Format diffFormat ) const;
- const TQString determineI18nedProgram( enum KDiffPlugin::DiffProgram diffProgram ) const;
- // yes ugly, it's better to use a struct or classmembers to pass these parameters around
- void determineDiffInfo ( const TQStringList lines,
- enum KDiffPlugin::Format diffFormat, int* numberOfFiles,
- int* numberOfHunks, int* numberOfAdditions,
- int* numberOfChanges, int* numberOfDeletions );
-};
-
-#endif