\param mod module being added
*/
-void CAM_Application::moduleAdded( CAM_Module* mod )
+void CAM_Application::moduleAdded( CAM_Module* /*mod*/ )
{
}
if ( rx.indexIn( args.join(" ") ) >= 0 && rx.numCaptures() > 0 ) {
QString modules = rx.cap(1);
QStringList mods = modules.split( ":", QString::SkipEmptyParts );
- for ( uint i = 0; i < mods.count(); i++ ) {
+ for ( int i = 0; i < mods.count(); i++ ) {
if ( !mods[i].trimmed().isEmpty() )
modList.append( mods[i].trimmed() );
}
\return \c true if module is activated successfully.
\sa initialize(), deactivateModule()
*/
-bool CAM_Module::activateModule( SUIT_Study* study )
+bool CAM_Module::activateModule( SUIT_Study* /*study*/ )
{
return true;
}
virtual QString iconName() const;
- virtual void contextMenuPopup( const QString&, QMenu*, QString& title ) {};
+ virtual void contextMenuPopup( const QString&, QMenu*, QString& ) {};
virtual void updateCommandsStatus() {};
virtual void putInfo( const QString&, const int = -1 );
# VSR: this is the original packages list
#SUBDIRS = Qtx Style DDS QDS SUIT STD CAF SUITApp LogWindow ObjBrowser Prs
# VSR: already migrated to Qt4 packages
-SUBDIRS = Qtx SUIT SUITApp STD CAM LogWindow
+SUBDIRS = Qtx SUIT SUITApp STD CAM LogWindow Prs
if ENABLE_SALOMEOBJECT
# VSR: this is the original packages list
--- /dev/null
+TEMPLATE = lib
+TARGET = SalomePrs
+DESTDIR = ../../lib
+MOC_DIR = ../../moc
+OBJECTS_DIR = ../../obj/$$TARGET
+
+CONFIG -= debug release debug_and_release
+CONFIG += qt thread debug dll shared
+
+win32:DEFINES += WIN32
+DEFINES += PRS_EXPORTS
+
+HEADERS = SALOME_Prs.h
+
+SOURCES = SALOME_Prs.cxx
+
+includes.files = $$HEADERS
+includes.path = ../../include
+
+INSTALLS += includes
*/
void SALOME_View::LocalSelection( const SALOME_OCCPrs*, const int )
{
-// MESSAGE( "SALOME_View::LocalSelection( const SALOME_OCCPrs* ) called! \
+// MESSAGE( "SALOME_View::LocalSelection( const SALOME_OCCPrs* ) called!
// Probably, selection is being activated in uncompatible viewframe." );
}
*/
void SALOME_View::LocalSelection( const SALOME_VTKPrs*, const int )
{
-// MESSAGE( "SALOME_View::LocalSelection( const SALOME_VTKPrs* ) called! \
+// MESSAGE( "SALOME_View::LocalSelection( const SALOME_VTKPrs* ) called!
// Probably, selection is being activated in uncompatible viewframe." );
}
*/
void SALOME_View::LocalSelection( const SALOME_Prs2d*, const int )
{
-// MESSAGE( "SALOME_View::LocalSelection( const SALOME_Prs2d* ) called! \
+// MESSAGE( "SALOME_View::LocalSelection( const SALOME_Prs2d* ) called!
// Probably, selection is being activated in uncompatible viewframe." );
}
*/
void SALOME_View::GlobalSelection( const bool ) const
{
-// MESSAGE( "SALOME_View::GlobalSelection() called! \
+// MESSAGE( "SALOME_View::GlobalSelection() called!
// Probably, selection is being activated in uncompatible viewframe." );
}
virtual void GlobalSelection( const bool = false ) const;
//! Creates empty presenation of corresponding type
- virtual SALOME_Prs* CreatePrs( const char* entry = 0 ) { return 0; }
+ virtual SALOME_Prs* CreatePrs( const char* /*entry*/ = 0 ) { return 0; }
// Axiluary methods called before and after displaying of objects
- virtual void BeforeDisplay( SALOME_Displayer* d ) {} //!< Null body here
- virtual void AfterDisplay ( SALOME_Displayer* d ) {} //!< Null body here
+ virtual void BeforeDisplay( SALOME_Displayer* ) {} //!< Null body here
+ virtual void AfterDisplay ( SALOME_Displayer* ) {} //!< Null body here
// New methods (asv)
//! \retval Return false.
SUBDIRS += LogWindow
SUBDIRS += PyInterp
SUBDIRS += PyConsole
+SUBDIRS += Prs
+