Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ac6a18f1
Commit
ac6a18f1
authored
Apr 25, 2009
by
Rico Schüller
Committed by
Alexandre Julliard
Apr 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
notepad: Allow only one search/replace dialog to open.
parent
31376006
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
dialog.c
programs/notepad/dialog.c
+14
-0
No files found.
programs/notepad/dialog.c
View file @
ac6a18f1
...
...
@@ -724,6 +724,13 @@ VOID DIALOG_SelectFont(VOID)
VOID
DIALOG_Search
(
VOID
)
{
/* Allow only one search/replace dialog to open */
if
(
Globals
.
hFindReplaceDlg
!=
NULL
)
{
SetActiveWindow
(
Globals
.
hFindReplaceDlg
);
return
;
}
ZeroMemory
(
&
Globals
.
find
,
sizeof
(
Globals
.
find
));
Globals
.
find
.
lStructSize
=
sizeof
(
Globals
.
find
);
Globals
.
find
.
hwndOwner
=
Globals
.
hMainWnd
;
...
...
@@ -749,6 +756,13 @@ VOID DIALOG_SearchNext(VOID)
VOID
DIALOG_Replace
(
VOID
)
{
/* Allow only one search/replace dialog to open */
if
(
Globals
.
hFindReplaceDlg
!=
NULL
)
{
SetActiveWindow
(
Globals
.
hFindReplaceDlg
);
return
;
}
ZeroMemory
(
&
Globals
.
find
,
sizeof
(
Globals
.
find
));
Globals
.
find
.
lStructSize
=
sizeof
(
Globals
.
find
);
Globals
.
find
.
hwndOwner
=
Globals
.
hMainWnd
;
...
...
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