Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
6d70e5c6
Commit
6d70e5c6
authored
Aug 26, 2011
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better labels for systray context menu
parent
862df691
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
main.c
main.c
+2
-2
No files found.
main.c
View file @
6d70e5c6
...
...
@@ -420,9 +420,9 @@ static LRESULT CALLBACK WindowProc(HWND hWnd, UINT msg, WPARAM wParam,
service_installed
?
""
:
"not"
);
AppendMenu
(
hMenu
,
MF_STRING
|
MF_GRAYED
,
ID_SEPARATOR
,
buf
);
AppendMenu
(
hMenu
,
MF_STRING
|
(
service_installed
?
MF_GRAYED
:
0
),
ID_INSTALL_SERVICE
,
"Install"
);
ID_INSTALL_SERVICE
,
"Install
service
"
);
AppendMenu
(
hMenu
,
MF_STRING
|
(
!
service_installed
?
MF_GRAYED
:
0
),
ID_REMOVE_SERVICE
,
"Deinstall"
);
ID_REMOVE_SERVICE
,
"Deinstall
service
"
);
AppendMenu
(
hMenu
,
MF_SEPARATOR
,
ID_SEPARATOR
,
""
);
AppendMenu
(
hMenu
,
MF_STRING
,
ID_EDIT_CONFIG
,
"Edit config file"
);
AppendMenu
(
hMenu
,
MF_STRING
,
ID_QUIT
,
"Exit"
);
...
...
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