mc/gnome/gprint.c
Pavel Roskin 7ba1e1aa4c * gdesktop-icon.c: Reorder includes - local after system.
* gdesktop-prefs.c: Likewise.
* gsession.c: Likewise.
* gdesktop-init.c: Likewise. Include "x.h".
* gdnd.c: Likewise.
* gprint.c: Likewise.
2001-06-15 23:28:07 +00:00

36 lines
760 B
C

/* Printing support for the Midnight Commander
*
* Copyright (C) 1998-1999 The Free Software Foundation
*
* Authors: Miguel de Icaza <miguel@nuclecu.unam.mx>
*/
#include <config.h>
#include <libgnome/libgnome.h>
#include "x.h"
#include "main.h"
#include "util.h"
#include "gdesktop.h"
#include "gprint.h"
void
gprint_setup_devices (void)
{
static char *gprint_path;
char *desktop_quoted;
char *command;
if (!gprint_path)
gprint_path = gnome_is_program_in_path ("g-print");
if (!gprint_path)
return;
desktop_quoted = name_quote (desktop_directory, 0);
command = g_strconcat (gprint_path, " --desktop-dir ", desktop_quoted, NULL);
g_free (desktop_quoted);
my_system (EXECUTE_WAIT | EXECUTE_AS_SHELL, shell, command);
g_free (command);
}