Renamed type from MooScript to moo-script

master
Yevgen Muntyan 2006-08-22 23:20:33 -05:00
parent 303b9b7e48
commit 6841eb4d9f
3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<tools> <tools>
<tool name="Switch Header And Implementation"> <tool id="SwitchHeaderAndImplementation" name="Switch Header And Implementation">
<langs>C, GAP</langs> <langs>C, GAP</langs>
<command type="MooScript" options="need-file"> <command type="moo-script" options="need-file">
<code>extensions = [[['.h', '.hh', '.hpp', '.hxx', '.H'], ['.c', '.cc', '.cpp', '.cxx', '.C']], <code>extensions = [[['.h', '.hh', '.hpp', '.hxx', '.H'], ['.c', '.cc', '.cpp', '.cxx', '.C']],
[['.gd'], ['.gi']]]; [['.gd'], ['.gi']]];
new = none; new = none;

View File

@ -1,6 +1,6 @@
<tools> <tools>
<tool name="_Shell Command" os="unix"> <tool id="ShellCommand" name="_Shell Command" os="unix">
<command type="MooScript" options="need-doc"> <command type="moo-script" options="need-doc">
<code>cmd = HistoryEntry("", "ShellCommand"); <code>cmd = HistoryEntry("", "ShellCommand");
if cmd then if cmd then
Insert(Exec(cmd), "\n"); Insert(Exec(cmd), "\n");

View File

@ -225,7 +225,7 @@ moo_command_script_class_init (MooCommandScriptClass *klass)
g_type_class_add_private (klass, sizeof (MooCommandScriptPrivate)); g_type_class_add_private (klass, sizeof (MooCommandScriptPrivate));
type = g_object_new (_moo_command_type_script_get_type (), NULL); type = g_object_new (_moo_command_type_script_get_type (), NULL);
moo_command_type_register ("MooScript", _("MooScript"), type); moo_command_type_register ("moo-script", _("MooScript"), type);
g_object_unref (type); g_object_unref (type);
} }