2005-10-27 [paul] 1.9.15cvs116
[claws.git] / src / plugins / mathml_viewer / mathml_viewer.c
index 5dd414fda829ced1ee677b1c2d1640113be11044..59ab0b0c8233205aee068137966cac219d5a4cf3 100644 (file)
@@ -14,7 +14,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifdef HAVE_CONFIG_H
@@ -63,7 +63,7 @@ static void mathml_show_mimepart(MimeViewer *_viewer, const gchar *infile, MimeI
        debug_print("mathml_show_mimepart\n");
 
        if (viewer->filename != NULL) {
-               unlink(viewer->filename);
+               g_unlink(viewer->filename);
                g_free(viewer->filename);
        }
 
@@ -94,7 +94,7 @@ static void mathml_destroy_viewer(MimeViewer *_viewer)
        debug_print("mathml_destroy_viewer\n");
 
        gtk_widget_unref(GTK_WIDGET(viewer->scrollwin));
-       unlink(viewer->filename);
+       g_unlink(viewer->filename);
        g_free(viewer->filename);
        g_free(viewer);
 }
@@ -140,12 +140,12 @@ static MimeViewerFactory mathml_viewer_factory =
 gint plugin_init(gchar **error)
 {
        if ((sylpheed_get_version() > VERSION_NUMERIC)) {
-               *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
+               *error = g_strdup("Your version of Sylpheed-Claws is newer than the version the MathML plugin was built with");
                return -1;
        }
 
        if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(0, 9, 3, 86))) {
-               *error = g_strdup("Your sylpheed version is too old");
+               *error = g_strdup("Your version of Sylpheed-Claws is too old for the MathML plugin");
                return -1;
        }