mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-28 07:58:08 +01:00
remove unused var
This commit is contained in:
parent
75cb31845f
commit
69f7598b19
2 changed files with 0 additions and 4 deletions
|
@ -41,13 +41,11 @@ LRESULT CALLBACK
|
|||
PasswdDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
PasswdDialogState* pState;
|
||||
CEAppGlobals* globals;
|
||||
XP_U16 id;
|
||||
|
||||
if ( message == WM_INITDIALOG ) {
|
||||
SetWindowLong( hDlg, GWL_USERDATA, lParam );
|
||||
pState = (PasswdDialogState*)lParam;
|
||||
globals = pState->globals;
|
||||
|
||||
nameToLabel( hDlg, pState->name, IDC_PWDLABEL );
|
||||
|
||||
|
@ -55,7 +53,6 @@ PasswdDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
|||
} else {
|
||||
pState = (PasswdDialogState*)GetWindowLong( hDlg, GWL_USERDATA );
|
||||
if ( !!pState ) {
|
||||
globals = pState->globals;
|
||||
|
||||
switch ( message ) {
|
||||
case WM_COMMAND:
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#include "cemain.h"
|
||||
|
||||
typedef struct PasswdDialogState {
|
||||
CEAppGlobals* globals;
|
||||
const XP_UCHAR* name;
|
||||
XP_UCHAR* buf;
|
||||
XP_U16* lenp;
|
||||
|
|
Loading…
Add table
Reference in a new issue