[haiku-commits] haiku: hrev45167 - headers/os/interface

  • From: jscipione@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 16 Jan 2013 05:33:01 +0100 (CET)

hrev45167 adds 1 changeset to branch 'master'
old head: 5e6540723d5bb4c5956797678998702ca44d76c5
new head: 75dde2cf73c05c494b166a1730750a011e236016
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=75dde2c+%5E5e65407

----------------------------------------------------------------------------

75dde2c: Fix some pedantic style issues in Font.h

                                     [ John Scipione <jscipione@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45167
Commit:      75dde2cf73c05c494b166a1730750a011e236016
URL:         http://cgit.haiku-os.org/haiku/commit/?id=75dde2c
Author:      John Scipione <jscipione@xxxxxxxxx>
Date:        Wed Jan 16 04:32:38 2013 UTC

----------------------------------------------------------------------------

1 file changed, 6 insertions(+), 4 deletions(-)
headers/os/interface/Font.h | 10 ++++++----

----------------------------------------------------------------------------

diff --git a/headers/os/interface/Font.h b/headers/os/interface/Font.h
index 9ff299c..7b7cd0e 100644
--- a/headers/os/interface/Font.h
+++ b/headers/os/interface/Font.h
@@ -9,6 +9,7 @@
 #include <SupportDefs.h>
 #include <InterfaceDefs.h>
 
+
 class BPoint;
 
 
@@ -138,8 +139,8 @@ struct escapement_delta {
 
 
 struct font_cache_info {
-    int32    sheared_font_penalty;
-    int32    rotated_font_penalty;
+       int32    sheared_font_penalty;
+       int32    rotated_font_penalty;
        float    oversize_threshold;
        int32    oversize_penalty;
        int32    cache_size;
@@ -352,7 +353,7 @@ unicode_block::operator&(const unicode_block& block) const
        return result;
 }
 
-               
+
 unicode_block
 unicode_block::operator|(const unicode_block& block) const
 {
@@ -363,7 +364,7 @@ unicode_block::operator|(const unicode_block& block) const
        return result;
 }
 
-               
+
 unicode_block&
 unicode_block::operator=(const unicode_block& block)
 {
@@ -386,4 +387,5 @@ unicode_block::operator!=(const unicode_block& block) const
        return fData[0] != block.fData[0] || fData[1] != block.fData[1];
 }
 
+
 #endif // _FONT_H_


Other related posts:

  • » [haiku-commits] haiku: hrev45167 - headers/os/interface - jscipione