mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 02:41:01 +00:00
Add some missing void:s.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19860 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c12bd68ed6
commit
432df0d14d
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-08-10 00:47 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
|
* Source/NSAttributedString.m (cache_init, cache_init_real): Add
|
||||||
|
missing void:s.
|
||||||
|
|
||||||
2004-08-10 00:06 Alexander Malmberg <alexander@malmberg.org>
|
2004-08-10 00:06 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
* Source/GSHorizontalTypesetter.m: Formatting cleanups.
|
* Source/GSHorizontalTypesetter.m: Formatting cleanups.
|
||||||
|
|
|
@ -58,7 +58,7 @@ static NSString *attachmentString = nil;
|
||||||
|
|
||||||
|
|
||||||
/* This function initializes all the previous cached values. */
|
/* This function initializes all the previous cached values. */
|
||||||
static void cache_init_real ()
|
static void cache_init_real(void)
|
||||||
{
|
{
|
||||||
NSMutableCharacterSet *m;
|
NSMutableCharacterSet *m;
|
||||||
NSCharacterSet *cset;
|
NSCharacterSet *cset;
|
||||||
|
@ -96,7 +96,7 @@ static void cache_init_real ()
|
||||||
cache has been initialized) and limit memory consumption (we are
|
cache has been initialized) and limit memory consumption (we are
|
||||||
not copying everywhere the real initialization code, which is in
|
not copying everywhere the real initialization code, which is in
|
||||||
cache_real_init (), which is not inlined.).*/
|
cache_real_init (), which is not inlined.).*/
|
||||||
static inline void cache_init ()
|
static inline void cache_init(void)
|
||||||
{
|
{
|
||||||
if (dictionaryClass == nil)
|
if (dictionaryClass == nil)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue