Disabled silly messages

This commit is contained in:
Yevgen Muntyan 2006-06-29 01:46:02 -05:00
parent 27979d5884
commit b327fe7319
2 changed files with 8 additions and 8 deletions

View File

@ -292,16 +292,16 @@
</kdevdoctreeview> </kdevdoctreeview>
<kdevfilecreate> <kdevfilecreate>
<filetypes> <filetypes>
<type icon="source" ext="g" create="template" name="GAP source" > <type icon="source" ext="g" name="GAP source" create="template" >
<descr>A new empty GAP source file</descr> <descr>A new empty GAP source file</descr>
</type> </type>
<type icon="source_cpp" ext="cpp" create="template" name="C++ Source" > <type icon="source_cpp" ext="cpp" name="C++ Source" create="template" >
<descr>A new empty C++ file.</descr> <descr>A new empty C++ file.</descr>
</type> </type>
<type icon="source_h" ext="h" create="template" name="C/C++ Header" > <type icon="source_h" ext="h" name="C/C++ Header" create="template" >
<descr>A new empty header file for C/C++.</descr> <descr>A new empty header file for C/C++.</descr>
</type> </type>
<type icon="source_c" ext="c" create="template" name="C Source" > <type icon="source_c" ext="c" name="C Source" create="template" >
<descr>A new empty C file.</descr> <descr>A new empty C file.</descr>
</type> </type>
</filetypes> </filetypes>

View File

@ -119,7 +119,7 @@ cmpl_data_read_simple_file (CmplData *data)
list = parse_words (contents, NULL, data->path); list = parse_words (contents, NULL, data->path);
data->cmpl = moo_completion_new_text (list); data->cmpl = moo_completion_new_text (list);
g_message ("read %d words from %s", g_list_length (list), data->path); // g_message ("read %d words from %s", g_list_length (list), data->path);
g_free (contents); g_free (contents);
} }
@ -245,8 +245,8 @@ cmpl_data_read_config_file (CmplData *data)
continue; continue;
} }
g_message ("read %d words for patttern '%s' from %s", // g_message ("read %d words for patttern '%s' from %s",
g_list_length (words), pattern, data->path); // g_list_length (words), pattern, data->path);
group = moo_completion_new_group (data->cmpl, NULL); group = moo_completion_new_group (data->cmpl, NULL);
moo_completion_group_add_data (group, words); moo_completion_group_add_data (group, words);
@ -384,7 +384,7 @@ cmpl_plugin_check_file (CmplPlugin *plugin,
data->path = g_strdup (path); data->path = g_strdup (path);
data->type = type; data->type = type;
data->mtime = buf.st_mtime; data->mtime = buf.st_mtime;
g_message ("found file '%s' for lang '%s'", path, id); // g_message ("found file '%s' for lang '%s'", path, id);
} }