Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 931f81f9fe)
r14.0.x
Michele Calgaro 3 years ago
parent 5f8a7a3105
commit 5a413fcfb0
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -16,6 +16,6 @@ rcdir = $(kde_datadir)/kbackgammon
rc_DATA = kbackgammonui.rc eventsrc
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 \*.c -o -name \*.ecpp -o -name \*.C`; \
LIST=`find . -name \*.h -o -name \*.cpp -o -name \*.c`; \
$(XGETTEXT) $$LIST -o $(podir)/kbackgammon.pot

@ -19,9 +19,9 @@ link_directories(
##### konquest (executable) #####################
tde_add_executable( konquest AUTOMOC
SOURCES Konquest.cc gameboard.cc gamecore.cc int_validator.cc mainwin.cc
map_widget.cc minimap.cc newgamedlg.cc planet_info.cc gameenddlg.cc
scoredlg.cc fleetdlg.cc newGameDlg_ui.ui
SOURCES Konquest.cpp gameboard.cpp gamecore.cpp int_validator.cpp mainwin.cpp
map_widget.cpp minimap.cpp newgamedlg.cpp planet_info.cpp gameenddlg.cpp
scoredlg.cpp fleetdlg.cpp newGameDlg_ui.ui
LINK tdecore-shared tdeui-shared tdeio-shared tdegames-shared
DESTINATION ${BIN_INSTALL_DIR}
)

@ -5,16 +5,16 @@
2004-08-22 Inge Wallin <inge@lysator.liu.se>
* gameboard.cc (nextTurn): Fixed a grammatical error.
* gameboard.cpp (nextTurn): Fixed a grammatical error.
0.99.4 --
Brought the KDE CVS tree in sync with my own. Changes from previous version
include:
include:
-- removed dependence on libg++ random integer classes
-- fixed a couple of problems with the game state machine.
-- fixed a couple of problems with the game state machine.
0.0.4 --
Fixed (hopefully) a compiler error. gamecore.cc would compile fine with
Fixed (hopefully) a compiler error. gamecore.cpp would compile fine with
debug (-g), but not with the optimizer (-O2). Added a destructor
and things seem okay.

@ -4,9 +4,9 @@ INCLUDES= -I$(top_srcdir)/libtdegames $(all_includes)
KDE_ICON = konquest
bin_PROGRAMS = konquest
konquest_SOURCES = Konquest.cc gameboard.cc gamecore.cc int_validator.cc \
mainwin.cc map_widget.cc minimap.cc newgamedlg.cc planet_info.cc \
gameenddlg.cc scoredlg.cc fleetdlg.cc newGameDlg_ui.ui
konquest_SOURCES = Konquest.cpp gameboard.cpp gamecore.cpp int_validator.cpp \
mainwin.cpp map_widget.cpp minimap.cpp newgamedlg.cpp planet_info.cpp \
gameenddlg.cpp scoredlg.cpp fleetdlg.cpp newGameDlg_ui.ui
konquest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
konquest_LDADD = $(LIB_TDEGAMES)
konquest_DEPENDENCIES = $(LIB_TDEGAMES_DEP)
@ -20,4 +20,4 @@ rcdir = $(kde_datadir)/konquest
rc_DATA = konquestui.rc
messages: rc.cpp
$(XGETTEXT) rc.cpp *.cc -o $(podir)/konquest.pot
$(XGETTEXT) rc.cpp $(podir)/konquest.pot

@ -18,6 +18,6 @@ METASOURCES = AUTO
SUBDIRS = carddecks highscore kgame pics
messages:
$(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libtdegames.pot
$(XGETTEXT) `find . -name \*.h -o -name \*.cpp` -o $(podir)/libtdegames.pot
include ../admin/Doxyfile.am

@ -25,5 +25,5 @@ METASOURCES = AUTO
SUBDIRS = . dialogs
messages:
# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libtdegames.pot
# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp` -o $(podir)/libtdegames.pot

@ -13,5 +13,5 @@ INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/kgame $(all_i
METASOURCES = AUTO
messages:
# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp -o -name \*.cc` -o $(podir)/libtdegames.pot
# $(XGETTEXT) `find . -name \*.h -o -name \*.cpp` -o $(podir)/libtdegames.pot

Loading…
Cancel
Save