~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/win32/uirs232.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2006-07-30 19:15:59 UTC
  • mto: (9.1.1 lenny) (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20060730191559-g31ymd2mk102kzff
Tags: upstream-1.19
ImportĀ upstreamĀ versionĀ 1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "res.h"
34
34
#include "resources.h"
35
35
#include "system.h"
 
36
#include "translate.h"
36
37
#include "uirs232.h"
37
38
#include "winmain.h"
38
39
 
120
121
 
121
122
void ui_rs232_settings_dialog(HWND hwnd)
122
123
{
123
 
    DialogBox(winmain_instance, (LPCTSTR)IDD_RS232_SETTINGS_DIALOG, hwnd,
 
124
    DialogBox(winmain_instance, (LPCTSTR)translate_res(IDD_RS232_SETTINGS_DIALOG), hwnd,
124
125
              dialog_proc);
125
126
}
126
127