~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/arch/unix/x11/xaw/uiscreenshot.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include "vice.h"
30
30
 
31
31
#include <stdio.h>
32
 
#include <stdlib.h>
33
32
 
34
33
#include <X11/Xlib.h>
35
34
#include <X11/Intrinsic.h>
143
142
        return;
144
143
 
145
144
    screenshot_dialog = ui_create_transient_shell(_ui_top_level,
146
 
                                                "screenshotDialog");
 
145
                                                  "screenshotDialog");
147
146
 
148
147
    screenshot_dialog_pane = XtVaCreateManagedWidget
149
148
        ("screenshotDialogPane",
279
278
    return *name ? 0 : -1;
280
279
}
281
280
 
 
281
void uiscreenshot_shutdown(void)
 
282
{
 
283
    lib_free(driver_buttons);
 
284
}
 
285