Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit dfdb36548a)
r14.0.x
Michele Calgaro 3 years ago
parent e515279c8c
commit 9a3dcd5ccf
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -33,7 +33,7 @@ xdg_apps_DATA = kcm_knetworkconfmodule.desktop
KDE_ICON = AUTO KDE_ICON = AUTO
messages: rc.cpp messages: rc.cpp
LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.ecpp -o -name \*.C`; \ LIST=`find . -name \*.h -o -name \*.cpp`; \
if test -n "$$LIST"; then \ if test -n "$$LIST"; then \
$(XGETTEXT) $$LIST -o $(podir)/knetworkconf.pot; \ $(XGETTEXT) $$LIST -o $(podir)/knetworkconf.pot; \
fi fi

@ -17,5 +17,5 @@ link_directories(
##### liloconfig-common (static) ################ ##### liloconfig-common (static) ################
tde_add_library( liloconfig-common STATIC_PIC AUTOMOC tde_add_library( liloconfig-common STATIC_PIC AUTOMOC
SOURCES String.cc Files.cc Disks.cc Config.cc lilo.cc SOURCES String.cpp Files.cpp Disks.cpp Config.cpp lilo.cpp
) )

@ -1,4 +1,4 @@
/* Config.cc /* Config.cpp
** **
** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer ** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
** **

@ -1,4 +1,4 @@
/* Disks.cc /* Disks.cpp
** **
** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer ** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
** **

@ -1,4 +1,4 @@
/* Files.cc /* Files.cpp
** **
** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer ** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
** **

@ -7,5 +7,5 @@ noinst_HEADERS = \
String.h Files.h Disks.h Config.h lilo.h String.h Files.h Disks.h Config.h lilo.h
libcommon_la_SOURCES = \ libcommon_la_SOURCES = \
String.cc Files.cc Disks.cc Config.cc lilo.cc String.cpp Files.cpp Disks.cpp Config.cpp lilo.cpp

@ -1,4 +1,4 @@
/* String.cc /* String.cpp
** **
** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer ** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
** **

@ -1,4 +1,4 @@
/* lilo.cc /* lilo.cpp
** **
** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer ** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
** **

@ -3,7 +3,7 @@ noinst_PROGRAMS = String
INCLUDES = -I.. $(all_includes) INCLUDES = -I.. $(all_includes)
String_SOURCES = \ String_SOURCES = \
String.cc String.cpp
messages: messages:

Loading…
Cancel
Save