summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/CMakeLists.txt10
-rw-r--r--lib/Makefile.am24
-rw-r--r--lib/actionQueue.cpp (renamed from lib/actionQueue.cc)0
-rw-r--r--lib/actions.cpp (renamed from lib/actions.cc)0
-rw-r--r--lib/idmapper.cpp (renamed from lib/idmapper.cc)0
-rw-r--r--lib/idmapperxml.cpp (renamed from lib/idmapperxml.cc)0
-rw-r--r--lib/idmapping.cpp (renamed from lib/idmapping.cc)0
-rw-r--r--lib/kpilotdevicelink.cpp (renamed from lib/kpilotdevicelink.cc)0
-rw-r--r--lib/kpilotlink.cpp (renamed from lib/kpilotlink.cc)0
-rw-r--r--lib/kpilotlocallink.cpp (renamed from lib/kpilotlocallink.cc)0
-rw-r--r--lib/kpilotlocallink.h2
-rw-r--r--lib/options.cpp (renamed from lib/options.cc)0
-rw-r--r--lib/pilot.cpp (renamed from lib/pilot.cc)2
-rw-r--r--lib/pilotAddress.cpp (renamed from lib/pilotAddress.cc)0
-rw-r--r--lib/pilotAppInfo.cpp (renamed from lib/pilotAppInfo.cc)2
-rw-r--r--lib/pilotDatabase.cpp (renamed from lib/pilotDatabase.cc)0
-rw-r--r--lib/pilotDateEntry.cpp (renamed from lib/pilotDateEntry.cc)0
-rw-r--r--lib/pilotDateEntry.h2
-rw-r--r--lib/pilotLocalDatabase.cpp (renamed from lib/pilotLocalDatabase.cc)0
-rw-r--r--lib/pilotMemo.cpp (renamed from lib/pilotMemo.cc)0
-rw-r--r--lib/pilotMemo.h2
-rw-r--r--lib/pilotRecord.cpp (renamed from lib/pilotRecord.cc)0
-rw-r--r--lib/pilotSerialDatabase.cpp (renamed from lib/pilotSerialDatabase.cc)0
-rw-r--r--lib/pilotSerialDatabase.h2
-rw-r--r--lib/pilotTodoEntry.cpp (renamed from lib/pilotTodoEntry.cc)0
-rw-r--r--lib/plugin.cpp (renamed from lib/plugin.cc)0
-rw-r--r--lib/recordConduit.cpp (renamed from lib/recordConduit.cc)0
-rw-r--r--lib/syncAction.cpp (renamed from lib/syncAction.cc)4
28 files changed, 25 insertions, 25 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index f340d80..1fae0d7 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -19,11 +19,11 @@ tde_import( libkcal )
##### kpilot (shared) ###########################
tde_add_library( kpilot SHARED AUTOMOC
- SOURCES kpilotlibSettings.kcfgc options.cc plugin.cc syncAction.cc
- kpilotlink.cc kpilotdevicelink.cc kpilotlocallink.cc actions.cc
- actionQueue.cc pilot.cc pilotAppInfo.cc pilotRecord.cc pilotDatabase.cc
- pilotLocalDatabase.cc pilotSerialDatabase.cc pilotMemo.cc pilotAddress.cc
- pilotDateEntry.cc pilotTodoEntry.cc
+ SOURCES kpilotlibSettings.kcfgc options.cpp plugin.cpp syncAction.cpp
+ kpilotlink.cpp kpilotdevicelink.cpp kpilotlocallink.cpp actions.cpp
+ actionQueue.cpp pilot.cpp pilotAppInfo.cpp pilotRecord.cpp pilotDatabase.cpp
+ pilotLocalDatabase.cpp pilotSerialDatabase.cpp pilotMemo.cpp pilotAddress.cpp
+ pilotDateEntry.cpp pilotTodoEntry.cpp
LINK tdeui-shared tdecore-shared tdeio-shared tdeabc-shared kcal-shared
${PILOTLINK_LIBRARIES}
VERSION 0.0.0
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 7864a38..6562f5b 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -17,16 +17,16 @@ INCLUDES = $(PISOCK_INCLUDE) -I$(top_srcdir) $(all_includes)
lib_LTLIBRARIES = libkpilot.la
libkpilot_la_SOURCES = kpilotlibSettings.kcfgc \
- options.cc plugin.cc syncAction.cc \
- kpilotlink.cc kpilotdevicelink.cc kpilotlocallink.cc \
- actions.cc actionQueue.cc \
- pilot.cc \
- pilotAppInfo.cc pilotRecord.cc pilotDatabase.cc \
- pilotLocalDatabase.cc pilotSerialDatabase.cc \
- pilotMemo.cc \
- pilotAddress.cc \
- pilotDateEntry.cc \
- pilotTodoEntry.cc
+ options.cpp plugin.cpp syncAction.cpp \
+ kpilotlink.cpp kpilotdevicelink.cpp kpilotlocallink.cpp \
+ actions.cpp actionQueue.cpp \
+ pilot.cpp \
+ pilotAppInfo.cpp pilotRecord.cpp pilotDatabase.cpp \
+ pilotLocalDatabase.cpp pilotSerialDatabase.cpp \
+ pilotMemo.cpp \
+ pilotAddress.cpp \
+ pilotDateEntry.cpp \
+ pilotTodoEntry.cpp
libkpilot_la_LDFLAGS = $(PISOCK_LDFLAGS) -no-undefined $(all_libraries) $(KDE_EXTRA_RPATH) $(KDE_RPATH)
libkpilot_la_LIBADD = $(PISOCK_LIB) $(LIB_TDEUI) $(LIB_TDEABC) -lkcal $(LIB_TQT) $(LIB_TDECORE) -lDCOP $(LIB_TDEIO)
@@ -50,9 +50,9 @@ kde_kcfg_DATA = kpilotlib.kcfg
check-local:
rm -f FAILED
for i in $(srcdir)/*.h ; do \
- ( echo "#include <kdemacros.h>" ; echo "#include \"$$i\"" ; echo "int main(int argc,char **argv){return 0;}" ) > header-test.cc; \
+ ( echo "#include <kdemacros.h>" ; echo "#include \"$$i\"" ; echo "int main(int argc,char **argv){return 0;}" ) > header-test.cpp; \
echo "$$i" ; \
- g++ $(all_includes) -I$(top_builddir) -DTQT_THREAD_SUPPORT -c header-test.cc || echo "$$i" >> FAILED; \
+ g++ $(all_includes) -I$(top_builddir) -DTQT_THREAD_SUPPORT -c header-test.cpp || echo "$$i" >> FAILED; \
done
test ! -e FAILED
diff --git a/lib/actionQueue.cc b/lib/actionQueue.cpp
index 6936297..6936297 100644
--- a/lib/actionQueue.cc
+++ b/lib/actionQueue.cpp
diff --git a/lib/actions.cc b/lib/actions.cpp
index 212540f..212540f 100644
--- a/lib/actions.cc
+++ b/lib/actions.cpp
diff --git a/lib/idmapper.cc b/lib/idmapper.cpp
index ebd25aa..ebd25aa 100644
--- a/lib/idmapper.cc
+++ b/lib/idmapper.cpp
diff --git a/lib/idmapperxml.cc b/lib/idmapperxml.cpp
index 89fe51d..89fe51d 100644
--- a/lib/idmapperxml.cc
+++ b/lib/idmapperxml.cpp
diff --git a/lib/idmapping.cc b/lib/idmapping.cpp
index 49a1e33..49a1e33 100644
--- a/lib/idmapping.cc
+++ b/lib/idmapping.cpp
diff --git a/lib/kpilotdevicelink.cc b/lib/kpilotdevicelink.cpp
index ecad02a..ecad02a 100644
--- a/lib/kpilotdevicelink.cc
+++ b/lib/kpilotdevicelink.cpp
diff --git a/lib/kpilotlink.cc b/lib/kpilotlink.cpp
index b543fe7..b543fe7 100644
--- a/lib/kpilotlink.cc
+++ b/lib/kpilotlink.cpp
diff --git a/lib/kpilotlocallink.cc b/lib/kpilotlocallink.cpp
index b5ec450..b5ec450 100644
--- a/lib/kpilotlocallink.cc
+++ b/lib/kpilotlocallink.cpp
diff --git a/lib/kpilotlocallink.h b/lib/kpilotlocallink.h
index fd74bab..eeeb298 100644
--- a/lib/kpilotlocallink.h
+++ b/lib/kpilotlocallink.h
@@ -32,7 +32,7 @@
#include "kpilotlink.h"
/** @file
-* Definition of the local link class; implemented in kpilotlink.cc .
+* Definition of the local link class; implemented in kpilotlink.cpp .
*/
diff --git a/lib/options.cc b/lib/options.cpp
index f7ee6de..f7ee6de 100644
--- a/lib/options.cc
+++ b/lib/options.cpp
diff --git a/lib/pilot.cc b/lib/pilot.cpp
index d15eb55..d946593 100644
--- a/lib/pilot.cc
+++ b/lib/pilot.cpp
@@ -1,4 +1,4 @@
-/* pilot.cc KPilot
+/* pilot.cpp KPilot
**
** Copyright (C) 1998-2001 by Dan Pilone
** Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
diff --git a/lib/pilotAddress.cc b/lib/pilotAddress.cpp
index 0706a39..0706a39 100644
--- a/lib/pilotAddress.cc
+++ b/lib/pilotAddress.cpp
diff --git a/lib/pilotAppInfo.cc b/lib/pilotAppInfo.cpp
index 5edc571..777dcc7 100644
--- a/lib/pilotAppInfo.cc
+++ b/lib/pilotAppInfo.cpp
@@ -1,4 +1,4 @@
-/* pilotAppInfo.cc KPilot
+/* pilotAppInfo.cpp KPilot
**
** Copyright (C) 2005-2006 Adriaan de Groot <groot@kde.org>
**
diff --git a/lib/pilotDatabase.cc b/lib/pilotDatabase.cpp
index f4a1b40..f4a1b40 100644
--- a/lib/pilotDatabase.cc
+++ b/lib/pilotDatabase.cpp
diff --git a/lib/pilotDateEntry.cc b/lib/pilotDateEntry.cpp
index 58da804..58da804 100644
--- a/lib/pilotDateEntry.cc
+++ b/lib/pilotDateEntry.cpp
diff --git a/lib/pilotDateEntry.h b/lib/pilotDateEntry.h
index 4d33693..d960a22 100644
--- a/lib/pilotDateEntry.h
+++ b/lib/pilotDateEntry.h
@@ -5,7 +5,7 @@
** Copyright (C) 1998-2001 by Dan Pilone
** Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
**
-** See the .cc file for an explanation of what this file is for.
+** See the .cpp file for an explanation of what this file is for.
*/
/** @file pilotDateEntry.h defines a wrapper for datebook entries. */
diff --git a/lib/pilotLocalDatabase.cc b/lib/pilotLocalDatabase.cpp
index ea78ac0..ea78ac0 100644
--- a/lib/pilotLocalDatabase.cc
+++ b/lib/pilotLocalDatabase.cpp
diff --git a/lib/pilotMemo.cc b/lib/pilotMemo.cpp
index c163e46..c163e46 100644
--- a/lib/pilotMemo.cc
+++ b/lib/pilotMemo.cpp
diff --git a/lib/pilotMemo.h b/lib/pilotMemo.h
index cc5389d..b8328f5 100644
--- a/lib/pilotMemo.h
+++ b/lib/pilotMemo.h
@@ -4,7 +4,7 @@
**
** Copyright (C) 1998-2001 by Dan Pilone
**
-** See the .cc file for an explanation of what this file is for.
+** See the .cpp file for an explanation of what this file is for.
*/
/*
diff --git a/lib/pilotRecord.cc b/lib/pilotRecord.cpp
index 8d5940a..8d5940a 100644
--- a/lib/pilotRecord.cc
+++ b/lib/pilotRecord.cpp
diff --git a/lib/pilotSerialDatabase.cc b/lib/pilotSerialDatabase.cpp
index a34e00c..a34e00c 100644
--- a/lib/pilotSerialDatabase.cc
+++ b/lib/pilotSerialDatabase.cpp
diff --git a/lib/pilotSerialDatabase.h b/lib/pilotSerialDatabase.h
index 1da2aaa..66faf53 100644
--- a/lib/pilotSerialDatabase.h
+++ b/lib/pilotSerialDatabase.h
@@ -6,7 +6,7 @@
** Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
** Copyright (C) 2006 Adriaan de Groot <groot@kde.org>
**
-** See the .cc file for an explanation of what this file is for.
+** See the .cpp file for an explanation of what this file is for.
*/
/*
diff --git a/lib/pilotTodoEntry.cc b/lib/pilotTodoEntry.cpp
index 9d52ed8..9d52ed8 100644
--- a/lib/pilotTodoEntry.cc
+++ b/lib/pilotTodoEntry.cpp
diff --git a/lib/plugin.cc b/lib/plugin.cpp
index 1013a34..1013a34 100644
--- a/lib/plugin.cc
+++ b/lib/plugin.cpp
diff --git a/lib/recordConduit.cc b/lib/recordConduit.cpp
index 7c92152..7c92152 100644
--- a/lib/recordConduit.cc
+++ b/lib/recordConduit.cpp
diff --git a/lib/syncAction.cc b/lib/syncAction.cpp
index 65a7c7c..30951ad 100644
--- a/lib/syncAction.cc
+++ b/lib/syncAction.cpp
@@ -337,7 +337,7 @@ int SyncAction::questionYesNo(const TQString & text,
0);
#else
- // The following code is taken from KDialogBase.cc,
+ // The following code is taken from KDialogBase.cpp,
// part of the KDE 2.2 libraries. Copyright 2001
// by Waldo Bastian.
//
@@ -449,7 +449,7 @@ int SyncAction::questionYesNoCancel(const TQString & text,
&checkboxReturn,
0);
#else
- // The following code is taken from KDialogBase.cc,
+ // The following code is taken from KDialogBase.cpp,
// part of the KDE 2.2 libraries. Copyright 2001
// by Waldo Bastian.
//