]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Compiler errors (Qt without STL support).
authorstv <stv@opencascade.com>
Thu, 30 Jun 2005 03:51:31 +0000 (03:51 +0000)
committerstv <stv@opencascade.com>
Thu, 30 Jun 2005 03:51:31 +0000 (03:51 +0000)
src/VISU_I/VISU_Gen_i.cc
src/VISU_I/VISU_ViewManager_i.cc

index a6a499534b3cd652517d064ebdb9ce95acf4ad44..4d7154ac6f198a3c1d6a6e89b887b5bfe8921aa1 100644 (file)
@@ -757,7 +757,7 @@ namespace VISU{
     for (SALOME_ListIteratorOfListIO it (aListIO); it.More(); it.Next()) {
       if (it.Value()->hasEntry()) {
         std::string aCurEntry (it.Value()->getEntry());
-        if (aCurEntry != anEntry) {
+        if (aCurEntry != std::string( anEntry.in() ) ) {
           aNewListIO.Append(it.Value());
         }
       }
index e501ec10670791781c08ab4733758e7ce2345f2b..9d037eb439afb3946ac43221a8c1c87f7575e1b3 100644 (file)
@@ -77,8 +77,8 @@ namespace VISU {
     void
     Execute()
     {
-      MESSAGE("Find application for study : " << myStudyName);
-      QString aStudyName (myStudyName);
+      MESSAGE( "Find application for study : " << myStudyName );
+      QString aStudyName( myStudyName.c_str() );
       SUIT_Session* aSession = SUIT_Session::session();
       QPtrList<SUIT_Application> anApplications = aSession->applications();
       QPtrListIterator<SUIT_Application> anIter (anApplications);