|
From: <cre...@us...> - 2006-09-18 19:34:26
|
Revision: 1510
http://svn.sourceforge.net/frontierkernel/?rev=1510&view=rev
Author: creecode
Date: 2006-09-18 12:34:23 -0700 (Mon, 18 Sep 2006)
Log Message:
-----------
in getuntitledfilename function replace dash with space in name
Modified Paths:
--------------
Frontier/branches/FSRef_Migration/Common/source/frontierconfig.c
Modified: Frontier/branches/FSRef_Migration/Common/source/frontierconfig.c
===================================================================
--- Frontier/branches/FSRef_Migration/Common/source/frontierconfig.c 2006-09-18 19:30:58 UTC (rev 1509)
+++ Frontier/branches/FSRef_Migration/Common/source/frontierconfig.c 2006-09-18 19:34:23 UTC (rev 1510)
@@ -201,9 +201,11 @@
boolean getuntitledfilename (bigstring bs) {
- /*
- 5.0d6 dmb: added numeric sequencing
- */
+ //
+ // 2006-09-15 creedon; push space character instead of dash
+ //
+ // 5.0d6 dmb: added numeric sequencing
+ //
static long untitledsequencer = 0;
@@ -212,15 +214,16 @@
if (++untitledsequencer > 1) {
- pushchar ('-', bs);
+ pushchar ( ' ', bs );
pushlong (untitledsequencer, bs);
}
return (true);
- } /*getuntitledfilename*/
+ } // getuntitledfilename
+
boolean getdefaultfilename (bigstring bs) {
return (getstringlist (defaultlistnumber, defaultfilename, bs));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|