From c13c5d2e330e4cee177c1fd8e0b6153c7e2503e4 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Thu, 4 Oct 2007 20:13:32 +0000 Subject: [PATCH] Rename error.* to except.* --- source/core/application.cpp | 2 +- source/core/{error.cpp => except.cpp} | 2 +- source/core/{error.h => except.h} | 0 source/core/getopt.h | 2 +- source/time/datetime.cpp | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename source/core/{error.cpp => except.cpp} (96%) rename source/core/{error.h => except.h} (100%) diff --git a/source/core/application.cpp b/source/core/application.cpp index 3a663db..e1a9314 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -11,7 +11,7 @@ Distributed under the LGPL #include "../time/units.h" #include "../time/utils.h" #include "application.h" -#include "error.h" +#include "except.h" using namespace std; diff --git a/source/core/error.cpp b/source/core/except.cpp similarity index 96% rename from source/core/error.cpp rename to source/core/except.cpp index defed2f..245bc05 100644 --- a/source/core/error.cpp +++ b/source/core/except.cpp @@ -5,7 +5,7 @@ Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ #include -#include "error.h" +#include "except.h" using namespace std; diff --git a/source/core/error.h b/source/core/except.h similarity index 100% rename from source/core/error.h rename to source/core/except.h diff --git a/source/core/getopt.h b/source/core/getopt.h index 3315108..77cf4f2 100644 --- a/source/core/getopt.h +++ b/source/core/getopt.h @@ -10,7 +10,7 @@ Distributed under the LGPL #include #include #include -#include "error.h" +#include "except.h" namespace Msp { diff --git a/source/time/datetime.cpp b/source/time/datetime.cpp index d74fc6f..8886139 100644 --- a/source/time/datetime.cpp +++ b/source/time/datetime.cpp @@ -1,7 +1,7 @@ /* $Id$ */ #include #include -#include "../core/error.h" +#include "../core/except.h" #include "datetime.h" #include "timestamp.h" -- 2.43.0