Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/14/head
Michele Calgaro 3 years ago
parent 2f2f921072
commit 65a9f54e10
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -36,7 +36,7 @@ rcdir = $(kde_datadir)/kbruch
rc_DATA = kbruchui.rc rc_DATA = kbruchui.rc
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)/kbruch.pot; \ $(XGETTEXT) $$LIST -o $(podir)/kbruch.pot; \
fi fi

@ -7,7 +7,7 @@ messages:
$(EXTRACTRC) `find . -name *.rc` > rc.cpp $(EXTRACTRC) `find . -name *.rc` > rc.cpp
$(EXTRACTRC) `find . -name *.ui` >> rc.cpp $(EXTRACTRC) `find . -name *.ui` >> 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)/keduca.pot; \ $(XGETTEXT) $$LIST -o $(podir)/keduca.pot; \
fi fi

@ -31,7 +31,7 @@ rcdir = $(kde_datadir)/keduca
rc_DATA = keducabuilderui.rc rc_DATA = keducabuilderui.rc
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)/keduca.pot; \ $(XGETTEXT) $$LIST -o $(podir)/keduca.pot; \
fi fi

@ -24,7 +24,7 @@ rcdir = $(kde_datadir)/khangman
messages: rc.cpp messages: rc.cpp
$(EXTRACTRC) *.ui *.rc > rc.cpp $(EXTRACTRC) *.ui *.rc > 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) data.i18n $$LIST -o $(podir)/khangman.pot; \ $(XGETTEXT) data.i18n $$LIST -o $(podir)/khangman.pot; \
fi fi

@ -234,7 +234,7 @@
2005-02-07 Maurizio Paolini <paolini@dmf.unicatt.it> 2005-02-07 Maurizio Paolini <paolini@dmf.unicatt.it>
* Bug fix: new algorithm for calcPath in calcpath.cc; the * Bug fix: new algorithm for calcPath in calcpath.cpp; the
previous had exponential complexity for some examples previous had exponential complexity for some examples
2005-02-03 Dominique Devriese <devriese@kde.org> 2005-02-03 Dominique Devriese <devriese@kde.org>
@ -1052,7 +1052,7 @@
2004-02-14 Dominique Devriese <devriese@kde.org> 2004-02-14 Dominique Devriese <devriese@kde.org>
* Fix a bug waiting to pop up in construct_mode.cc, where you * Fix a bug waiting to pop up in construct_mode.cpp, where you
select the same object twice. select the same object twice.
* Add documentation about the locus and textlabel design to the * Add documentation about the locus and textlabel design to the
@ -1061,7 +1061,7 @@
2004-02-10 Dominique Devriese <devriese@kde.org> 2004-02-10 Dominique Devriese <devriese@kde.org>
* Fix a bug which caused Kig to crash on moving a text label by * Fix a bug which caused Kig to crash on moving a text label by
removing a wrong assertion in objects/object_calcer.cc removing a wrong assertion in objects/object_calcer.cpp
2004-02-09 Dominique Devriese <devriese@kde.org> 2004-02-09 Dominique Devriese <devriese@kde.org>
@ -1286,7 +1286,7 @@
2003-07-17 Dominique Devriese <devriese@kde.org> 2003-07-17 Dominique Devriese <devriese@kde.org>
* fix the "conversion from const char* to char*" problem in * fix the "conversion from const char* to char*" problem in
python_scripter.cc. This introduces a small, harmless memory leak python_scripter.cpp. This introduces a small, harmless memory leak
because of how the python libs work.. because of how the python libs work..
2003-07-16 Dominique Devriese <devriese@kde.org> 2003-07-16 Dominique Devriese <devriese@kde.org>

@ -31,7 +31,7 @@ holding data for other objects to use. Examples are StringImp,
IntImp, ConicImp etc. IntImp, ConicImp etc.
There are a lot of ObjectImp's in Kig, most of them are in files There are a lot of ObjectImp's in Kig, most of them are in files
called *_imp.h and *_imp.cc or *_imp.cpp in the objects subdirectory. called *_imp.h and *_imp.cpp in the objects subdirectory.
Examples are PointImp, LineImp, ConicImp, CircleImp, CubicImp, Examples are PointImp, LineImp, ConicImp, CircleImp, CubicImp,
AngleImp etc. AngleImp etc.

@ -41,7 +41,7 @@ messages: rc.cpp
cat "$$file" | grep '<UseText>' | sed -e 's/^ *<UseText>\([^<]*\)<\/UseText>/i18n( "\1" );/' | sed -e 's/&amp;/\&/g' >> rc.cpp; \ cat "$$file" | grep '<UseText>' | sed -e 's/^ *<UseText>\([^<]*\)<\/UseText>/i18n( "\1" );/' | sed -e 's/&amp;/\&/g' >> rc.cpp; \
cat "$$file" | grep '<SelectStatement>' | sed -e 's/^ *<SelectStatement>\([^<]*\)<\/SelectStatement>/i18n( "\1" );/' | sed -e 's/&amp;/\&/g' >> rc.cpp; \ cat "$$file" | grep '<SelectStatement>' | sed -e 's/^ *<SelectStatement>\([^<]*\)<\/SelectStatement>/i18n( "\1" );/' | sed -e 's/&amp;/\&/g' >> rc.cpp; \
done done
$(XGETTEXT) tips.cpp rc.cpp filters/*.h kig/*.h misc/*.h modes/*.h objects/*.h scripting/*.h */*.cc kig/*.cpp misc/*.cpp modes/*.cpp -o $(podir)/kig.pot $(XGETTEXT) tips.cpp rc.cpp filters/*.h kig/*.h misc/*.h modes/*.h objects/*.h scripting/*.h */*.cpp kig/*.cpp misc/*.cpp modes/*.cpp -o $(podir)/kig.pot
$(XGETTEXT) tdefile/tdefile_drgeo.cpp tdefile/tdefile_drgeo.h -o $(podir)/tdefile_drgeo.pot $(XGETTEXT) tdefile/tdefile_drgeo.cpp tdefile/tdefile_drgeo.h -o $(podir)/tdefile_drgeo.pot
$(XGETTEXT) tdefile/tdefile_kig.cpp tdefile/tdefile_kig.h -o $(podir)/tdefile_kig.pot $(XGETTEXT) tdefile/tdefile_kig.cpp tdefile/tdefile_kig.h -o $(podir)/tdefile_kig.pot
@ -51,7 +51,7 @@ dummy.cpp:
touch dummy.cpp touch dummy.cpp
TAGS: TAGS:
find -name '*.cc' -o -name '*.cpp' -o -name '*.h' | etags - find -name '*.cpp' -o -name '*.h' | etags -
# Want to do the scripting part separately, but # Want to do the scripting part separately, but
# include everything else. # include everything else.

@ -23,18 +23,18 @@ tde_add_library( kigfilters STATIC_PIC AUTOMOC
latexexporteroptions.ui latexexporteroptions.ui
svgexporteroptions.ui svgexporteroptions.ui
drgeo-filter-chooserbase.ui drgeo-filter-chooserbase.ui
cabri-filter.cc cabri-filter.cpp
exporter.cc exporter.cpp
filter.cc filter.cpp
filters-common.cc filters-common.cpp
imageexporteroptions.cc imageexporteroptions.cpp
kgeo-filter.cc kgeo-filter.cpp
kseg-filter.cc kseg-filter.cpp
latexexporter.cc latexexporter.cpp
native-filter.cc native-filter.cpp
svgexporter.cc svgexporter.cpp
drgeo-filter.cc drgeo-filter.cpp
drgeo-filter-chooser.cc drgeo-filter-chooser.cpp
LINK LINK
kigmisc-static kigmisc-static

@ -19,20 +19,20 @@ noinst_HEADERS= \
drgeo-filter.h \ drgeo-filter.h \
drgeo-filter-chooser.h drgeo-filter-chooser.h
libfilters_la_SOURCES= \ libfilters_la_SOURCES= \
cabri-filter.cc \ cabri-filter.cpp \
exporter.cc \ exporter.cpp \
filter.cc \ filter.cpp \
filters-common.cc \ filters-common.cpp \
imageexporteroptions.cc \ imageexporteroptions.cpp \
imageexporteroptionsbase.ui \ imageexporteroptionsbase.ui \
kgeo-filter.cc \ kgeo-filter.cpp \
kseg-filter.cc \ kseg-filter.cpp \
latexexporter.cc \ latexexporter.cpp \
latexexporteroptions.ui \ latexexporteroptions.ui \
native-filter.cc \ native-filter.cpp \
svgexporter.cc \ svgexporter.cpp \
svgexporteroptions.ui \ svgexporteroptions.ui \
drgeo-filter.cc \ drgeo-filter.cpp \
drgeo-filter-chooser.cc \ drgeo-filter-chooser.cpp \
drgeo-filter-chooserbase.ui drgeo-filter-chooserbase.ui

@ -17,7 +17,7 @@ link_directories(
tde_add_library( kigpart STATIC_PIC AUTOMOC tde_add_library( kigpart STATIC_PIC AUTOMOC
SOURCES SOURCES
kig_document.cc kig_document.cpp
kig_part.cpp kig_part.cpp
kig_view.cpp kig_view.cpp
kig_commands.cpp kig_commands.cpp

@ -40,7 +40,7 @@ noinst_LTLIBRARIES = libkigparttemp.la
# the Part's source, library search path, and link libraries # the Part's source, library search path, and link libraries
libkigparttemp_la_SOURCES = \ libkigparttemp_la_SOURCES = \
kig_document.cc \ kig_document.cpp \
kig_part.cpp \ kig_part.cpp \
kig_view.cpp \ kig_view.cpp \
kig_commands.cpp kig_commands.cpp

@ -18,23 +18,23 @@ tde_add_library( kigmisc STATIC_PIC AUTOMOC
SOURCES SOURCES
argsparser.cpp argsparser.cpp
builtin_stuff.cc builtin_stuff.cpp
calcpaths.cc calcpaths.cpp
common.cpp common.cpp
conic-common.cpp conic-common.cpp
coordinate.cpp coordinate.cpp
coordinate_system.cpp coordinate_system.cpp
cubic-common.cc cubic-common.cpp
goniometry.cc goniometry.cpp
guiaction.cc guiaction.cpp
kigfiledialog.cc kigfiledialog.cpp
kiginputdialog.cc kiginputdialog.cpp
kignumerics.cpp kignumerics.cpp
kigpainter.cpp kigpainter.cpp
kigtransform.cpp kigtransform.cpp
lists.cc lists.cpp
object_constructor.cc object_constructor.cpp
object_hierarchy.cc object_hierarchy.cpp
rect.cc screeninfo.cc rect.cpp screeninfo.cpp
special_constructors.cc special_constructors.cpp
) )

@ -25,26 +25,26 @@ noinst_HEADERS = \
libmisc_la_SOURCES = \ libmisc_la_SOURCES = \
argsparser.cpp \ argsparser.cpp \
builtin_stuff.cc \ builtin_stuff.cpp \
calcpaths.cc \ calcpaths.cpp \
common.cpp \ common.cpp \
conic-common.cpp \ conic-common.cpp \
coordinate.cpp \ coordinate.cpp \
coordinate_system.cpp \ coordinate_system.cpp \
cubic-common.cc \ cubic-common.cpp \
goniometry.cc \ goniometry.cpp \
guiaction.cc \ guiaction.cpp \
kigfiledialog.cc \ kigfiledialog.cpp \
kiginputdialog.cc \ kiginputdialog.cpp \
kignumerics.cpp \ kignumerics.cpp \
kigpainter.cpp \ kigpainter.cpp \
kigtransform.cpp \ kigtransform.cpp \
lists.cc \ lists.cpp \
object_constructor.cc \ object_constructor.cpp \
object_hierarchy.cc \ object_hierarchy.cpp \
rect.cc \ rect.cpp \
screeninfo.cc \ screeninfo.cpp \
special_constructors.cc special_constructors.cpp
libmisc_la_LIBADD=-lm libmisc_la_LIBADD=-lm
METASOURCES=AUTO METASOURCES=AUTO

@ -21,11 +21,11 @@
// suit my needs ( no dependencies on other boost libs, change the // suit my needs ( no dependencies on other boost libs, change the
// namespace to avoid conflicts, // namespace to avoid conflicts,
#ifndef MYBOOST_INTRUSIVE_PTR_HPP_INCLUDED #ifndef MYBOOST_INTRUSIVE_PTR_H_INCLUDED
#define MYBOOST_INTRUSIVE_PTR_HPP_INCLUDED #define MYBOOST_INTRUSIVE_PTR_H_INCLUDED
// //
// intrusive_ptr.hpp // intrusive_ptr.h
// //
// Copyright (c) 2001, 2002 Peter Dimov // Copyright (c) 2001, 2002 Peter Dimov
// //
@ -253,4 +253,4 @@ template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::
# pragma warning(pop) # pragma warning(pop)
#endif #endif
#endif // #ifndef MYBOOST_INTRUSIVE_PTR_HPP_INCLUDED #endif // #ifndef MYBOOST_INTRUSIVE_PTR_H_INCLUDED

@ -21,18 +21,18 @@ tde_add_library( kigmodes STATIC_PIC AUTOMOC
macrowizardbase.ui macrowizardbase.ui
textlabelwizardbase.ui textlabelwizardbase.ui
typesdialogbase.ui typesdialogbase.ui
base_mode.cc base_mode.cpp
construct_mode.cc construct_mode.cpp
dragrectmode.cc dragrectmode.cpp
edittype.cc edittype.cpp
label.cc label.cpp
linkslabel.cpp linkslabel.cpp
macro.cc macro.cpp
macrowizard.cc macrowizard.cpp
mode.cc mode.cpp
moving.cc moving.cpp
normal.cc normal.cpp
popup.cc popup.cpp
textlabelwizard.cc textlabelwizard.cpp
typesdialog.cpp typesdialog.cpp
) )

@ -2,21 +2,21 @@ INCLUDES=$(all_includes)
noinst_LTLIBRARIES=libmodes.la noinst_LTLIBRARIES=libmodes.la
libmodes_la_SOURCES= \ libmodes_la_SOURCES= \
base_mode.cc \ base_mode.cpp \
construct_mode.cc \ construct_mode.cpp \
dragrectmode.cc \ dragrectmode.cpp \
edittype.cc \ edittype.cpp \
edittypebase.ui \ edittypebase.ui \
label.cc \ label.cpp \
linkslabel.cpp \ linkslabel.cpp \
macro.cc \ macro.cpp \
macrowizard.cc \ macrowizard.cpp \
macrowizardbase.ui \ macrowizardbase.ui \
mode.cc \ mode.cpp \
moving.cc \ moving.cpp \
normal.cc \ normal.cpp \
popup.cc \ popup.cpp \
textlabelwizard.cc \ textlabelwizard.cpp \
textlabelwizardbase.ui \ textlabelwizardbase.ui \
typesdialog.cpp \ typesdialog.cpp \
typesdialogbase.ui typesdialogbase.ui

@ -381,7 +381,7 @@ void BaseConstructMode::selectObjects( const std::vector<ObjectHolder*>& os, Kig
void ConstructMode::handlePrelim( const std::vector<ObjectCalcer*>& args, const TQPoint& p, KigPainter& pter, KigWidget& w ) void ConstructMode::handlePrelim( const std::vector<ObjectCalcer*>& args, const TQPoint& p, KigPainter& pter, KigWidget& w )
{ {
// set the text next to the arrow cursor like in modes/normal.cc // set the text next to the arrow cursor like in modes/normal.cpp
TQPoint textloc = p; TQPoint textloc = p;
textloc.setX( textloc.x() + 15 ); textloc.setX( textloc.x() + 15 );

@ -17,42 +17,42 @@ link_directories(
tde_add_library( kigobjects STATIC_PIC AUTOMOC tde_add_library( kigobjects STATIC_PIC AUTOMOC
SOURCES SOURCES
angle_type.cc angle_type.cpp
arc_type.cc arc_type.cpp
base_type.cc base_type.cpp
bogus_imp.cc bogus_imp.cpp
circle_imp.cc circle_imp.cpp
circle_type.cc circle_type.cpp
polygon_type.cc polygon_type.cpp
common.cc common.cpp
conic_imp.cc conic_imp.cpp
conic_types.cc conic_types.cpp
cubic_imp.cc cubic_imp.cpp
cubic_type.cc cubic_type.cpp
curve_imp.cc curve_imp.cpp
intersection_types.cc intersection_types.cpp
inversion_type.cc inversion_type.cpp
line_imp.cc line_imp.cpp
line_type.cc line_type.cpp
locus_imp.cc locus_imp.cpp
object_calcer.cc object_calcer.cpp
object_drawer.cc object_drawer.cpp
object_factory.cc object_factory.cpp
object_holder.cc object_holder.cpp
object_imp.cc object_imp.cpp
object_imp_factory.cc object_imp_factory.cpp
object_type.cc object_type.cpp
object_type_factory.cc object_type_factory.cpp
other_imp.cc other_imp.cpp
other_type.cc other_type.cpp
point_imp.cc point_imp.cpp
point_type.cc point_type.cpp
polygon_imp.cc polygon_imp.cpp
tangent_type.cc tangent_type.cpp
centerofcurvature_type.cc centerofcurvature_type.cpp
tests_type.cc tests_type.cpp
text_imp.cc text_imp.cpp
text_type.cc text_type.cpp
transform_types.cc transform_types.cpp
vector_type.cc vector_type.cpp
) )

@ -39,43 +39,43 @@ noinst_HEADERS=\
transform_types.h \ transform_types.h \
vector_type.h vector_type.h
libobjects_la_SOURCES=\ libobjects_la_SOURCES=\
angle_type.cc \ angle_type.cpp \
arc_type.cc \ arc_type.cpp \
base_type.cc \ base_type.cpp \
bogus_imp.cc \ bogus_imp.cpp \
circle_imp.cc \ circle_imp.cpp \
circle_type.cc \ circle_type.cpp \
polygon_type.cc \ polygon_type.cpp \
common.cc \ common.cpp \
conic_imp.cc \ conic_imp.cpp \
conic_types.cc \ conic_types.cpp \
cubic_imp.cc \ cubic_imp.cpp \
cubic_type.cc \ cubic_type.cpp \
curve_imp.cc \ curve_imp.cpp \
intersection_types.cc \ intersection_types.cpp \
inversion_type.cc \ inversion_type.cpp \
line_imp.cc \ line_imp.cpp \
line_type.cc \ line_type.cpp \
locus_imp.cc \ locus_imp.cpp \
object_calcer.cc \ object_calcer.cpp \
object_drawer.cc \ object_drawer.cpp \
object_factory.cc \ object_factory.cpp \
object_holder.cc \ object_holder.cpp \
object_imp.cc \ object_imp.cpp \
object_imp_factory.cc \ object_imp_factory.cpp \
object_type.cc \ object_type.cpp \
object_type_factory.cc \ object_type_factory.cpp \
other_imp.cc \ other_imp.cpp \
other_type.cc \ other_type.cpp \
point_imp.cc \ point_imp.cpp \
point_type.cc \ point_type.cpp \
polygon_imp.cc \ polygon_imp.cpp \
tangent_type.cc \ tangent_type.cpp \
centerofcurvature_type.cc \ centerofcurvature_type.cpp \
tests_type.cc \ tests_type.cpp \
text_imp.cc \ text_imp.cpp \
text_type.cc \ text_type.cpp \
transform_types.cc \ transform_types.cpp \
vector_type.cc vector_type.cpp
libobjects_la_LIBADD=-lm libobjects_la_LIBADD=-lm
METASOURCES=AUTO METASOURCES=AUTO

@ -19,7 +19,7 @@
#define KIG_OBJECTS_OBJECT_CALCER_H #define KIG_OBJECTS_OBJECT_CALCER_H
#include "common.h" #include "common.h"
#include "../misc/boost_intrusive_pointer.hpp" #include "../misc/boost_intrusive_pointer.h"
class ObjectCalcer; class ObjectCalcer;

@ -233,7 +233,7 @@ ObjectCalcer* ObjectFactory::getAttachPoint(
* changed the preference order 2005/01/21 (now attachPoint has preference over points) * changed the preference order 2005/01/21 (now attachPoint has preference over points)
* *
* NOTE: changes in the tests performed should be matched also in * NOTE: changes in the tests performed should be matched also in
* modes/popup.cc (addNameLabel) and in label.cc (TextLabelModeBase::mouseMoved) * modes/popup.cpp (addNameLabel) and in label.cpp (TextLabelModeBase::mouseMoved)
*/ */
if ( p && p->imp()->attachPoint().valid() ) if ( p && p->imp()->attachPoint().valid() )

@ -20,11 +20,11 @@ tde_add_library( kigscripting STATIC_PIC AUTOMOC
SOURCES SOURCES
newscriptwizardbase.ui newscriptwizardbase.ui
python_type.cc python_type.cpp
python_scripter.cc python_scripter.cpp
script-common.cc script-common.cpp
script_mode.cc script_mode.cpp
newscriptwizard.cc newscriptwizard.cpp
LINK LINK
katepartinterfaces katepartinterfaces
tdetexteditor-shared tdetexteditor-shared

@ -8,12 +8,12 @@ noinst_HEADERS = \
script_mode.h \ script_mode.h \
newscriptwizard.h newscriptwizard.h
libscripting_la_SOURCES = \ libscripting_la_SOURCES = \
python_type.cc \ python_type.cpp \
python_scripter.cc \ python_scripter.cpp \
script-common.cc \ script-common.cpp \
script_mode.cc \ script_mode.cpp \
newscriptwizardbase.ui \ newscriptwizardbase.ui \
newscriptwizard.cc newscriptwizard.cpp
libscripting_la_LIBADD = $(BOOST_PYTHON_LIBS) $(PYTHON_LIBS) -lkatepartinterfaces libscripting_la_LIBADD = $(BOOST_PYTHON_LIBS) $(PYTHON_LIBS) -lkatepartinterfaces
libscripting_la_LDFLAGS = $(all_libraries) $(PYTHON_LDFLAGS) libscripting_la_LDFLAGS = $(all_libraries) $(PYTHON_LDFLAGS)
METASOURCES=AUTO METASOURCES=AUTO

@ -8,7 +8,7 @@ METASOURCES = AUTO
messages: rc.cpp messages: rc.cpp
$(EXTRACTRC) *.ui >> rc.cpp $(EXTRACTRC) *.ui >> 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)/kmplot.pot; \ $(XGETTEXT) $$LIST -o $(podir)/kmplot.pot; \
fi fi

@ -42,7 +42,7 @@ stringstocpp:
messages: stringstocpp rc.cpp messages: stringstocpp 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)/kpercentage.pot; \ $(XGETTEXT) $$LIST -o $(podir)/kpercentage.pot; \
fi fi

@ -25,7 +25,7 @@ rcdir = $(kde_datadir)/kverbos
rc_DATA = kverbosui.rc rc_DATA = kverbosui.rc
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)/kverbos.pot; \ $(XGETTEXT) $$LIST -o $(podir)/kverbos.pot; \
fi fi

@ -58,7 +58,7 @@ rc_DATA = kwordquizui.rc eventsrc
xdg_apps_DATA = kwordquiz.desktop xdg_apps_DATA = kwordquiz.desktop
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)/kwordquiz.pot; \ $(XGETTEXT) $$LIST -o $(podir)/kwordquiz.pot; \
fi fi

@ -1,6 +1,6 @@
SUBDIRS = tdeeducore tdeeduui tdeeduplot extdate SUBDIRS = tdeeducore tdeeduui tdeeduplot extdate
messages: messages:
$(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libtdeedu.pot $(XGETTEXT) `find . -name \*.h -o -name \*.cpp` -o $(podir)/libtdeedu.pot
include ../admin/Doxyfile.am include ../admin/Doxyfile.am

@ -39,7 +39,7 @@ tde_add_library( extdate SHARED AUTOMOC
tde_add_check_executable( test_extdate AUTOMOC tde_add_check_executable( test_extdate AUTOMOC
SOURCES SOURCES
test_extdate.cc test_extdate.cpp
LINK LINK
tdecore-shared tdecore-shared
tdeui-shared tdeui-shared

@ -9,7 +9,7 @@ libextdate_la_SOURCES = extdatetime.cpp extcalendarsystem.cpp extcalendarsystemg
libextdate_la_LDFLAGS = $(all_libraries) -no-undefined -version-info 3:0:2 libextdate_la_LDFLAGS = $(all_libraries) -no-undefined -version-info 3:0:2
libextdate_la_LIBADD = $(LIB_TDEUI) $(LIB_TQT) $(LIB_TDECORE) libextdate_la_LIBADD = $(LIB_TDEUI) $(LIB_TQT) $(LIB_TDECORE)
test_extdate_SOURCES = test_extdate.cc test_extdate_SOURCES = test_extdate.cpp
test_extdate_LDADD = libextdate.la test_extdate_LDADD = libextdate.la
test_extdate_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor test_extdate_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor

Loading…
Cancel
Save