Changeset 788


Ignore:
Timestamp:
11/07/06 18:25:48 (6 years ago)
Author:
jcb
Message:

Removed obsolete function called format_string_location that was only an indirect called to without_white_spaces.

Location:
trunk/applications/NXtranslate/sns_histogram
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/applications/NXtranslate/sns_histogram/string_location_format.cpp

    r759 r788  
    99using std::runtime_error; 
    1010using std::invalid_argument; 
    11  
    12 /** 
    13  * \brief This function format the string location to be able to work 
    14  * on it (remove white spaces....) 
    15  * 
    16  * \param location (INPUT) is the string location as found in the 
    17  * translation file 
    18  * \param new_location (OUTPUT) is the string location formated 
    19  */ 
    20 void format_string_location(const string & location,  
    21                             string & new_location) 
    22 { 
    23   without_white_spaces(location, new_location); 
    24   return; 
    25 } 
    2611 
    2712/** 
  • trunk/applications/NXtranslate/sns_histogram/string_location_format.h

    r759 r788  
    55using std::string; 
    66using std::vector; 
    7  
    8 /** 
    9  * \brief This function format the string location to be able to work 
    10  * on it (remove white spaces....) 
    11  * 
    12  * \param location (INPUT) is the string location as found in the 
    13  * translation file 
    14  * \param new_location (OUTPUT) is the string location formated 
    15  */ 
    16 void format_string_location(const string & s,  
    17                             string & s_output);   
    187 
    198/** 
Note: See TracChangeset for help on using the changeset viewer.