comparison libpurple/plugins/buddynote.c @ 16072:b0be5a8d8561

Whitespace
author Stu Tomlinson <stu@nosnilmot.com>
date Wed, 11 Apr 2007 19:45:20 +0000
parents 32c366eeeb99
children 08db93bbd798
comparison
equal deleted inserted replaced
16071:5e436cd088e4 16072:b0be5a8d8561
73 } 73 }
74 74
75 static PurplePluginInfo info = 75 static PurplePluginInfo info =
76 { 76 {
77 PURPLE_PLUGIN_MAGIC, 77 PURPLE_PLUGIN_MAGIC,
78 PURPLE_MAJOR_VERSION, /**< major version */ 78 PURPLE_MAJOR_VERSION, /**< major version */
79 PURPLE_MINOR_VERSION, 79 PURPLE_MINOR_VERSION, /**< minor version */
80 PURPLE_PLUGIN_STANDARD, /**< type */ 80 PURPLE_PLUGIN_STANDARD, /**< type */
81 NULL, /**< ui_requirement */ 81 NULL, /**< ui_requirement */
82 0, /**< flags */ 82 0, /**< flags */
83 NULL, /**< dependencies */ 83 NULL, /**< dependencies */
84 PURPLE_PRIORITY_DEFAULT, /**< priority */ 84 PURPLE_PRIORITY_DEFAULT, /**< priority */
85
86 "core-plugin_pack-buddynote", /**< id */ 85 "core-plugin_pack-buddynote", /**< id */
87 N_("Buddy Notes"), /**< name */ 86 N_("Buddy Notes"), /**< name */
88 VERSION, /**< version */ 87 VERSION, /**< version */
89 N_("Store notes on particular buddies."), /** summary */ 88 N_("Store notes on particular buddies."), /**< summary */
90 N_("Adds the option to store notes for buddies " 89 N_("Adds the option to store notes for buddies "
91 "on your buddy list."), /** description */ 90 "on your buddy list."), /**< description */
92 "Stu Tomlinson <stu@nosnilmot.com>", /**< author */ 91 "Stu Tomlinson <stu@nosnilmot.com>", /**< author */
93 PURPLE_WEBSITE, /**< homepage */ 92 PURPLE_WEBSITE, /**< homepage */
94
95 plugin_load, /**< load */ 93 plugin_load, /**< load */
96 NULL, /**< unload */ 94 NULL, /**< unload */
97 NULL, /**< destroy */ 95 NULL, /**< destroy */
98
99 NULL, /**< ui_info */ 96 NULL, /**< ui_info */
100 NULL, /**< extra_info */ 97 NULL, /**< extra_info */
101 NULL, /**< prefs_info */ 98 NULL, /**< prefs_info */
102 NULL /**< actions */ 99 NULL /**< actions */
103 }; 100 };