Index: /FalconView/trunk/public/fvw_core/GeodataDataSources/LibkmlDataSource.cpp
===================================================================
--- /FalconView/trunk/public/fvw_core/GeodataDataSources/LibkmlDataSource.cpp (revision 2306)
+++ /FalconView/trunk/public/fvw_core/GeodataDataSources/LibkmlDataSource.cpp (revision 2307)
@@ -602,6 +602,6 @@
          }
 
-		   // make sure only one person writing to the file at a time
-		   HANDLE h = ::CreateMutexW(NULL, false, L"MaybeDumpKMLSem");
+         // make sure only one person writing to the file at a time
+         HANDLE h = ::CreateMutexW(NULL, false, L"MaybeDumpKMLSem");
          if (h == NULL)
          {
@@ -609,6 +609,6 @@
             ASSERT(0);
          }
-		   DWORD d = ::WaitForSingleObject(h, INFINITE);
-		   _ASSERT(d == WAIT_OBJECT_0);
+         DWORD d = ::WaitForSingleObject(h, INFINITE);
+         _ASSERT(d == WAIT_OBJECT_0);
 
          try
@@ -619,12 +619,12 @@
             f.close();
          }
-         catch (...) { } // rare exception to rule about ignoring exceptions
+         catch (std::exception) { } // rare exception to rule about ignoring exceptions
 
          // release mutex
          ::ReleaseMutex(h);
-		   ::CloseHandle(h);
-      }
-   }
-   catch (...) { } // rare exception to rule about ignoring exceptions
+         ::CloseHandle(h);
+      }
+   }
+   catch (std::exception) { } // rare exception to rule about ignoring exceptions
 }
 
