Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
dimbor
nx-libs
Commits
898f04e4
Commit
898f04e4
authored
Apr 23, 2019
by
Ulrich Sibiller
Committed by
Mike Gabriel
May 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Font.c: Loop over font paths
drop defines and use an array instead. This way adding further paths can be done much easier.
parent
dfb5602a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
Font.c
nx-X11/programs/Xserver/hw/nxagent/Font.c
+16
-8
No files found.
nx-X11/programs/Xserver/hw/nxagent/Font.c
View file @
898f04e4
...
...
@@ -71,10 +71,13 @@ is" without express or implied warranty.
#undef TEST
#undef DEBUG
#define NXAGENT_DEFAULT_FONT_DIR "/usr/share/nx/fonts"
#define NXAGENT_ALTERNATE_FONT_DIR "/usr/share/X11/fonts"
#define NXAGENT_ALTERNATE_FONT_DIR_2 "/usr/share/fonts/X11"
#define NXAGENT_ALTERNATE_FONT_DIR_3 "/usr/X11R6/lib/X11/fonts"
const
char
*
nxagentFontDirs
[]
=
{
"/usr/share/nx/fonts"
,
"/usr/share/X11/fonts"
,
"/usr/share/fonts/X11"
,
"/usr/X11R6/lib/X11/fonts"
,
NULL
};
const
char
*
nxagentFontSubdirs
[]
=
{
"Type1"
,
...
...
@@ -1491,10 +1494,15 @@ void nxagentVerifyDefaultFontPath(void)
return
;
}
nxagentVerifySingleFontPath
(
&
fontPath
,
NXAGENT_DEFAULT_FONT_DIR
);
nxagentVerifySingleFontPath
(
&
fontPath
,
NXAGENT_ALTERNATE_FONT_DIR
);
nxagentVerifySingleFontPath
(
&
fontPath
,
NXAGENT_ALTERNATE_FONT_DIR_2
);
nxagentVerifySingleFontPath
(
&
fontPath
,
NXAGENT_ALTERNATE_FONT_DIR_3
);
for
(
int
i
=
0
;
;
i
++
)
{
char
*
dir
=
nxagentFontDirs
[
i
];
if
(
dir
==
NULL
)
break
;
else
nxagentVerifySingleFontPath
(
&
fontPath
,
dir
);
}
if
(
*
fontPath
==
'\0'
)
{
...
...
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