summaryrefslogtreecommitdiff
path: root/scp2/macros
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-18 17:53:32 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-18 18:00:07 +0200
commitbb59404622c7198ff539cc58fc26d0371a6c5cd3 (patch)
tree0ef1ac6c1ddf4f7cd2210cf9eba7374e716faa95 /scp2/macros
parentdbc3b2544acffcf9d8f1f14c3b6fce5c80e0493e (diff)
remove unused macros from macro.pl
Change-Id: If69e4c42f487249d7ba5bb3e164f61470ff12ddd
Diffstat (limited to 'scp2/macros')
-rw-r--r--scp2/macros/macro.pl36
1 files changed, 0 insertions, 36 deletions
diff --git a/scp2/macros/macro.pl b/scp2/macros/macro.pl
index 45808746a28f..1d5dd6c6c8bc 100644
--- a/scp2/macros/macro.pl
+++ b/scp2/macros/macro.pl
@@ -64,12 +64,9 @@ write_DIR_ISOLANGUAGE_ALL_LANG_LPROJ();
write_EXTRA_ALL_LANG();
write_EXTRA_ALL_LANG_BUT_EN_US();
write_EXTRA_ALL_GOOD_HELP_LOCALIZATIONS_LANG();
-write_EXTRA_IDENT_ALL_LANG();
write_RESFILE_ALL_LANG();
write_README_ALL_LANG();
write_README_TXT_ALL_LANG();
-write_VALUE_ALL_LANG_LETTER_DIR();
-write_KEY_ALL_LANG_LETTER();
write_FILE_ALL_LANG_LETTER();
close OUTFILE;
@@ -163,16 +160,6 @@ sub write_EXTRA_ALL_GOOD_HELP_LOCALIZATIONS_LANG
print OUTFILE "\n\n";
}
-sub write_EXTRA_IDENT_ALL_LANG
-{
- print OUTFILE "#define EXTRA_IDENT_ALL_LANG(name) ";
- foreach $lang (@completelangiso) {
- print OUTFILE "\\\n\tName ($lang) = STRING(name)";
- print OUTFILE "; " if ( $lang ne $completelangiso[$#completelangiso]);
- }
- print OUTFILE "\n\n";
-}
-
sub write_RESFILE_ALL_LANG
{
print OUTFILE "#define RESFILE_ALL_LANG(name) ";
@@ -203,29 +190,6 @@ sub write_README_TXT_ALL_LANG
print OUTFILE "\n\n";
}
-# FIXME: Not used at all in OOo?, #i38597#
-sub write_VALUE_ALL_LANG_LETTER_DIR
-{
- print OUTFILE "#define VALUE_ALL_LANG_LETTER_DIR ";
- print OUTFILE "\\\n\tValue (en-US) = STRING(en);";
- foreach $lang (@completelangiso) {
- next if ( $lang eq "en-US");
- print OUTFILE "\\\n\tValue ($lang) = STRING($lang)";
- print OUTFILE "; " if ( $lang ne $completelangiso[$#completelangiso]);
- }
- print OUTFILE "\n\n";
-}
-
-sub write_KEY_ALL_LANG_LETTER
-{
- print OUTFILE "#define KEY_ALL_LANG_LETTER ";
- foreach $lang (@completelangiso) {
- print OUTFILE "\\\n\tKey ($lang) = STRING($lang)";
- print OUTFILE "; " if ( $lang ne $completelangiso[$#completelangiso]);
- }
- print OUTFILE "\n\n";
-}
-
sub write_FILE_ALL_LANG_LETTER
{
print OUTFILE "#define FILE_ALL_LANG_LETTER(name, ext) ";