Changeset 95 for trunk


Ignore:
Timestamp:
06/03/13 01:33:29 (12 years ago)
Author:
epyon
Message:
  • order of includes fixed
  • logger bug fixed
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv/gfx/texture_font.hh

    r89 r95  
    88#define NV_GL_TEXTURE_FONT_HH
    99
     10#include <nv/common.hh>
    1011#include <string>
    11 
    12 #include <nv/common.hh>
    1312#include <nv/gfx/texture_atlas.hh>
    1413#include <glm/glm.hpp>
  • trunk/nv/interface/image_data.hh

    r91 r95  
    1414#define NV_IMAGE_DATA_HH
    1515
     16#include <nv/common.hh>
    1617#include <algorithm>
    17 #include <nv/common.hh>
    1818#include <glm/glm.hpp>
    1919
  • trunk/nv/logger.hh

    r48 r95  
    6464                explicit logger( int llevel )
    6565                {
    66                         level = llevel;
     66                        m_level = llevel;
    6767                }
    6868
  • trunk/nv/logging.hh

    r88 r95  
    3939                unsigned int get_level()
    4040                {
    41                         return level;
     41                        return m_level;
    4242                };
    4343                void set_level( unsigned int level )
    4444                {
    45                         level = level;
     45                        m_level = level;
    4646                };
    4747                virtual void log( log_level level, const std::string& message ) = 0;
    4848        protected:
    49                 unsigned int level;
     49                unsigned int m_level;
    5050        };
    5151
  • trunk/src/gfx/texture_font.cc

    r89 r95  
    44// This file is part of NV Libraries.
    55// For conditions of distribution and use, see copyright notice in nv.hh
     6#include "nv/gfx/texture_font.hh"
     7
    68#include <sstream>
    79#include <stdexcept>
    8 
    9 #include "nv/gfx/texture_font.hh"
    1010#include "nv/lib/freetype2.hh"
    1111
Note: See TracChangeset for help on using the changeset viewer.