refresh frame fix, dblclk proxy viewer fix, vicon refresh fix for awdw resize, fix...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / sighandler.C
index 93d8da20aa8b39a8aa6bc9dca1119e4e9ceb0576..f9a56432fc1ee7a35077abca057058e234adafb2 100644 (file)
@@ -43,14 +43,8 @@ void SigHandler::signal_handler(int signum)
 void SigHandler::push_file(File *file)
 {
 // Check for duplicate
-       for(int i = 0; i < files.total; i++)
-       {
-               if(files.values[i] == file)
-               {
-                       printf("SigHandler::push_file: file %s already on table.\n",
-                               file->asset->path);
-                       return;
-               }
+       for(int i = 0; i < files.total; i++) {
+               if(files.values[i] == file) return;
        }
 
 // Append file
@@ -67,17 +61,5 @@ void SigHandler::pull_file(File *file)
                        return;
                }
        }
-       printf("SigHandler::pull_file: file %s not on table.\n",
-               file->asset->path);
 }
 
-
-
-
-
-
-
-
-
-
-