Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
7984e706
Commit
7984e706
authored
Nov 08, 2008
by
Hirofumi Katayama
Committed by
Alexandre Julliard
Nov 12, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wordpad: Accept double-click in date and time dialog.
parent
a43adb40
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
En.rc
programs/wordpad/En.rc
+1
-1
wordpad.c
programs/wordpad/wordpad.c
+5
-0
No files found.
programs/wordpad/En.rc
View file @
7984e706
...
...
@@ -110,7 +110,7 @@ CAPTION "Date and time"
FONT 10, "MS Sans Serif"
BEGIN
LTEXT "Available formats",0,3,2,100,15
LISTBOX IDC_DATETIME,3,12,80,65,LBS_NOINTEGRALHEIGHT
LISTBOX IDC_DATETIME,3,12,80,65,LBS_NOINTEGRALHEIGHT
| LBS_NOTIFY
PUSHBUTTON "&OK",IDOK,87,12,40,12
PUSHBUTTON "&Cancel",IDCANCEL,87,26,40,12
END
...
...
programs/wordpad/wordpad.c
View file @
7984e706
...
...
@@ -1373,6 +1373,11 @@ static INT_PTR CALLBACK datetime_proc(HWND hWnd, UINT message, WPARAM wParam, LP
case
WM_COMMAND
:
switch
(
LOWORD
(
wParam
))
{
case
IDC_DATETIME
:
if
(
HIWORD
(
wParam
)
!=
LBN_DBLCLK
)
break
;
/* Fall through */
case
IDOK
:
{
LRESULT
index
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment