Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7249
b: refs/heads/master
c: 84c2a2e
h: refs/heads/master
i:
  7247: 4c28e86
v: v3
  • Loading branch information
Keenan Pepper authored and Sam Ravnborg committed Jul 27, 2005
1 parent 6aab2ed commit 9d540bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db8c1a7b2ca25f37b1429c00e82d6568f86caec1
refs/heads/master: 84c2a2eb348f3bd85ec8eb3bb95ba04f65f4e217
2 changes: 1 addition & 1 deletion trunk/scripts/lxdialog/dialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ int dialog_menu (const char *title, const char *prompt, int height, int width,
int dialog_checklist (const char *title, const char *prompt, int height,
int width, int list_height, int item_no,
const char * const * items, int flag);
extern unsigned char dialog_input_result[];
extern char dialog_input_result[];
int dialog_inputbox (const char *title, const char *prompt, int height,
int width, const char *init);

Expand Down
4 changes: 2 additions & 2 deletions trunk/scripts/lxdialog/inputbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include "dialog.h"

unsigned char dialog_input_result[MAX_LEN + 1];
char dialog_input_result[MAX_LEN + 1];

/*
* Print the termination buttons
Expand All @@ -48,7 +48,7 @@ dialog_inputbox (const char *title, const char *prompt, int height, int width,
{
int i, x, y, box_y, box_x, box_width;
int input_x = 0, scroll = 0, key = 0, button = -1;
unsigned char *instr = dialog_input_result;
char *instr = dialog_input_result;
WINDOW *dialog;

/* center dialog box on screen */
Expand Down

0 comments on commit 9d540bc

Please sign in to comment.