Skip to content

Commit 9ec2685

Browse files
committed
* ClipboardServer.c: changed the default path for "CURRDIR:" and "PROGDIR:" to "T:", because the "MUI:" assign does not exist on all systems, i.e. AROS.
1 parent fec0f3c commit 9ec2685

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

ChangeLog

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,16 @@
22
MUI BetterString MCC class - ChangeLog
33
--------------------------------------
44

5+
2020-09-09 Thore B�ckelmann <[email protected]>
6+
7+
* ClipboardServer.c: changed the default path for "CURRDIR:" and "PROGDIR:" to
8+
"T:", because the "MUI:" assign does not exist on all systems, i.e. AROS.
9+
510
#### v11.34 RELEASE ###########################################################
611

712
2020-06-10 Thore B�ckelmann <[email protected]>
813

9-
* ClipboarsServer.c: set "MUI:" as default "CURRDIR:" and "PROGDIR:" for the
14+
* ClipboardServer.c: set "MUI:" as default "CURRDIR:" and "PROGDIR:" for the
1015
global clipboard server process to avoid locking the directory of the first
1116
started MUI application using this class until it is eventually flushed from
1217
memory.

mcc/ClipboardServer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,8 +453,8 @@ BOOL StartClipboardServer(void)
453453
#elif defined(__MORPHOS__)
454454
NP_CodeType, CODETYPE_PPC,
455455
#endif
456-
NP_CurrentDir, Lock("MUI:", SHARED_LOCK),
457-
NP_ProgramDir, Lock("MUI:", SHARED_LOCK),
456+
NP_CurrentDir, Lock("T:", SHARED_LOCK),
457+
NP_ProgramDir, Lock("T:", SHARED_LOCK),
458458
TAG_DONE);
459459

460460
if(serverProcess != NULL)

0 commit comments

Comments
 (0)