summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorNikola Pajkovsky <npajkovs@redhat.com>2010-07-08 16:38:20 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-07-09 11:42:46 +0200
commit7c8467db240180d4d4fba9701eac1c4b07466d6b (patch)
tree391bf908a9894f23c9b4a7a3d10dd44a5e44219d /inc
parent6c4ea60aa257907deebcdb346a9d68bbe722837e (diff)
downloadabrt-7c8467db240180d4d4fba9701eac1c4b07466d6b.tar.gz
abrt-7c8467db240180d4d4fba9701eac1c4b07466d6b.tar.xz
abrt-7c8467db240180d4d4fba9701eac1c4b07466d6b.zip
lower-case devel headers
Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
Diffstat (limited to 'inc')
-rw-r--r--inc/Makefile.am22
-rw-r--r--inc/abrt_exception.h (renamed from inc/ABRTException.h)0
-rw-r--r--inc/action.h (renamed from inc/Action.h)2
-rw-r--r--inc/analyzer.h (renamed from inc/Analyzer.h)2
-rw-r--r--inc/comm_layer_inner.h (renamed from inc/CommLayerInner.h)2
-rw-r--r--inc/crash_types.h (renamed from inc/CrashTypes.h)0
-rw-r--r--inc/database.h (renamed from inc/Database.h)2
-rw-r--r--inc/dbus_common.h (renamed from inc/DBusCommon.h)2
-rw-r--r--inc/debug_dump.h (renamed from inc/DebugDump.h)0
-rw-r--r--inc/observer.h (renamed from inc/Observer.h)2
-rw-r--r--inc/plugin.h (renamed from inc/Plugin.h)2
-rw-r--r--inc/reporter.h (renamed from inc/Reporter.h)4
12 files changed, 20 insertions, 20 deletions
diff --git a/inc/Makefile.am b/inc/Makefile.am
index e668b48a..901c23f6 100644
--- a/inc/Makefile.am
+++ b/inc/Makefile.am
@@ -1,18 +1,18 @@
HEADER_FILES = \
- ABRTException.h \
+ abrt_exception.h \
abrtlib.h \
abrt_types.h \
abrt_xmlrpc.h \
- Action.h \
- Analyzer.h \
- CommLayerInner.h \
- CrashTypes.h \
- Database.h \
- DBusCommon.h \
- DebugDump.h \
- Observer.h \
- Plugin.h \
- Reporter.h \
+ action.h \
+ analyzer.h \
+ comm_layer_inner.h \
+ crash_types.h \
+ database.h \
+ dbus_common.h \
+ debug_dump.h \
+ observer.h \
+ plugin.h \
+ reporter.h \
xfuncs.h
lib_includedir=$(includedir)/abrt/
diff --git a/inc/ABRTException.h b/inc/abrt_exception.h
index b826bfa8..b826bfa8 100644
--- a/inc/ABRTException.h
+++ b/inc/abrt_exception.h
diff --git a/inc/Action.h b/inc/action.h
index fc56277b..21183366 100644
--- a/inc/Action.h
+++ b/inc/action.h
@@ -21,7 +21,7 @@
#ifndef ACTION_H_
#define ACTION_H_
-#include "Plugin.h"
+#include "plugin.h"
/**
* An abstract class. The class defines an action plugin interface.
diff --git a/inc/Analyzer.h b/inc/analyzer.h
index a45bd0e8..25ea69a5 100644
--- a/inc/Analyzer.h
+++ b/inc/analyzer.h
@@ -22,7 +22,7 @@
#define ANALYZER_H_
#include <string>
-#include "Plugin.h"
+#include "plugin.h"
/**
* An abstract class. The class defines an analyzer plugin interface.
diff --git a/inc/CommLayerInner.h b/inc/comm_layer_inner.h
index 353cfc76..e9662388 100644
--- a/inc/CommLayerInner.h
+++ b/inc/comm_layer_inner.h
@@ -19,7 +19,7 @@
#ifndef COMMLAYERINNER_H_
#define COMMLAYERINNER_H_
-#include "Observer.h"
+#include "observer.h"
void init_daemon_logging(CObserver *pObs);
diff --git a/inc/CrashTypes.h b/inc/crash_types.h
index 25dbcd46..25dbcd46 100644
--- a/inc/CrashTypes.h
+++ b/inc/crash_types.h
diff --git a/inc/Database.h b/inc/database.h
index a698bcbc..df109bde 100644
--- a/inc/Database.h
+++ b/inc/database.h
@@ -23,7 +23,7 @@
#include <string>
#include <vector>
-#include "Plugin.h"
+#include "plugin.h"
/**
* Table
diff --git a/inc/DBusCommon.h b/inc/dbus_common.h
index 58b4c8dc..63053cc9 100644
--- a/inc/DBusCommon.h
+++ b/inc/dbus_common.h
@@ -19,7 +19,7 @@
#ifndef DBUSCOMMON_H_
#define DBUSCOMMON_H_
-#include "CrashTypes.h"
+#include "crash_types.h"
#define ABRTD_DBUS_NAME "com.redhat.abrt"
#define ABRTD_DBUS_PATH "/com/redhat/abrt"
diff --git a/inc/DebugDump.h b/inc/debug_dump.h
index f8487a65..f8487a65 100644
--- a/inc/DebugDump.h
+++ b/inc/debug_dump.h
diff --git a/inc/Observer.h b/inc/observer.h
index ec7dfa7b..f3565ff5 100644
--- a/inc/Observer.h
+++ b/inc/observer.h
@@ -21,7 +21,7 @@
#include <string>
#include <stdint.h>
-#include "DBusCommon.h"
+#include "dbus_common.h"
class CObserver {
public:
diff --git a/inc/Plugin.h b/inc/plugin.h
index 367739ff..34d5743f 100644
--- a/inc/Plugin.h
+++ b/inc/plugin.h
@@ -23,7 +23,7 @@
#define PLUGIN_H_
#include "abrt_types.h"
-#include "CrashTypes.h"
+#include "crash_types.h"
#if HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/inc/Reporter.h b/inc/reporter.h
index 4144ec33..12f1b0b9 100644
--- a/inc/Reporter.h
+++ b/inc/reporter.h
@@ -22,8 +22,8 @@
#define REPORTER_H_
#include <string>
-#include "Plugin.h"
-#include "CrashTypes.h"
+#include "plugin.h"
+#include "crash_types.h"
/**
* An abstract class. The class defines a reporter plugin interface.