Fixed type of osg::ApplicationUsage::set/getApplictionName(), updated

demos accordingly.

Made OsgCameraGroup set the _applicationUsage to the
osg::ApplicationUsage::instance() when no ArgumentParser is supplied.

Added export to osgProducer::ViewerEventAdapter.
This commit is contained in:
Robert Osfield
2003-04-09 08:20:08 +00:00
parent 1e689ae57a
commit b02917e7a2
5 changed files with 8 additions and 5 deletions

View File

@@ -35,8 +35,8 @@ class SG_EXPORT ApplicationUsage
typedef std::map<std::string,std::string> UsageMap;
void setApplicatonName(const std::string& name) { _applicationName = name; }
const std::string& getApplicatonName() const { return _applicationName; }
void setApplicationName(const std::string& name) { _applicationName = name; }
const std::string& getApplicationName() const { return _applicationName; }
void setDescription(const std::string& desc) { _description = desc; }
const std::string& getDescription() const { return _description; }