Changeset 20634

Show
Ignore:
Timestamp:
08/08/07 10:10:51 (1 year ago)
Author:
patrick
Message:

Fixed coding standard violations in method parameter naming. No functional
changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/branches/2.2/modules/tweek/tweek/CORBA/CorbaManager.cpp

    r20633 r20634  
    8181} 
    8282 
    83 bool CorbaManager::init(const std::string& local_id, int& argc, char** argv, 
     83bool CorbaManager::init(const std::string& localID, int& argc, char** argv, 
    8484                        const std::string& nsHost, const vpr::Uint16& nsPort, 
    8585                        const std::string& iiopVersion) 
     
    101101      mORB = CORBA::ORB_init(argc, argv, TWEEK_ORB_VER_STRING); 
    102102 
    103       status = createChildPOA(local_id); 
     103      status = createChildPOA(localID); 
    104104 
    105105      try 
     
    413413// ============================================================================ 
    414414 
    415 bool CorbaManager::createChildPOA(const std::string& local_id
     415bool CorbaManager::createChildPOA(const std::string& localID
    416416{ 
    417417   bool status(true); 
     
    445445      PortableServer::ThreadPolicy::_duplicate(thread_policy); 
    446446 
    447    std::string poa_name = "tweek_" + local_id
     447   std::string poa_name = "tweek_" + localID
    448448 
    449449   try 
  • juggler/branches/2.2/modules/tweek/tweek/CORBA/CorbaManager.h

    r20633 r20634  
    7777    * manager are activated within that child POA. 
    7878    * 
    79     * @param localId     A string providing a unique identifier for the local 
     79    * @param localID     A string providing a unique identifier for the local 
    8080    *                    POA. 
    8181    * @param argc        The size of the following argument vector.  This will 
     
    100100    *                    "1.2".  It defaults to "1.0". 
    101101    */ 
    102    bool init(const std::string& localId, int& argc, char** argv, 
     102   bool init(const std::string& localID, int& argc, char** argv, 
    103103             const std::string& nsHost = std::string(""), 
    104104             const vpr::Uint16& nsPort = vpr::Uint16(2809), 
     
    111111    *       they are destroyed and shut down. 
    112112    * 
    113     * @param wait_for_completion If true, block until all pending requests and 
    114     *                            events are completed.  This parameter is 
    115     *                            optional and defaults to true. 
    116     */ 
    117    void shutdown(bool wait_for_completion = true); 
     113    * @param waitForCompletion If true, block until all pending requests and 
     114    *                          events are completed.  This parameter is 
     115    *                          optional and defaults to true. 
     116    */ 
     117   void shutdown(bool waitForCompletion = true); 
    118118 
    119119   /** 
     
    185185 
    186186private: 
    187    bool createChildPOA(const std::string& local_id); 
     187   bool createChildPOA(const std::string& localID); 
    188188 
    189189   std::string mAppName;