| 113 } |
113 } |
| 114 |
114 |
| 115 static gboolean |
115 static gboolean |
| 116 plugin_load(GaimPlugin *plugin) |
116 plugin_load(GaimPlugin *plugin) |
| 117 { |
117 { |
| 118 gaim_signal_connect(gaim_gtk_conversations_get_handle(), "conversation-timestamp", |
118 gaim_signal_connect(pidgin_conversations_get_handle(), "conversation-timestamp", |
| 119 plugin, GAIM_CALLBACK(conversation_timestamp_cb), NULL); |
119 plugin, GAIM_CALLBACK(conversation_timestamp_cb), NULL); |
| 120 gaim_signal_connect(gaim_log_get_handle(), "log-timestamp", |
120 gaim_signal_connect(gaim_log_get_handle(), "log-timestamp", |
| 121 plugin, GAIM_CALLBACK(log_timestamp_cb), NULL); |
121 plugin, GAIM_CALLBACK(log_timestamp_cb), NULL); |
| 122 return TRUE; |
122 return TRUE; |
| 123 } |
123 } |
| 138 { |
138 { |
| 139 GAIM_PLUGIN_MAGIC, |
139 GAIM_PLUGIN_MAGIC, |
| 140 GAIM_MAJOR_VERSION, |
140 GAIM_MAJOR_VERSION, |
| 141 GAIM_MINOR_VERSION, |
141 GAIM_MINOR_VERSION, |
| 142 GAIM_PLUGIN_STANDARD, /**< type */ |
142 GAIM_PLUGIN_STANDARD, /**< type */ |
| 143 GAIM_GTK_PLUGIN_TYPE, /**< ui_requirement */ |
143 PIDGIN_PLUGIN_TYPE, /**< ui_requirement */ |
| 144 0, /**< flags */ |
144 0, /**< flags */ |
| 145 NULL, /**< dependencies */ |
145 NULL, /**< dependencies */ |
| 146 GAIM_PRIORITY_DEFAULT, /**< priority */ |
146 GAIM_PRIORITY_DEFAULT, /**< priority */ |
| 147 |
147 |
| 148 NULL, /**< id */ |
148 NULL, /**< id */ |