aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/my
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2011-01-01 20:19:56 +0000
committerGravatar Szymon Tomasz Stefanek2011-01-01 20:19:56 +0000
commitc601b5a27f74b16158adafe429faefbe573e64a2 (patch)
treea3cde3206a45628f8ac86e8dfbdab70b20c3a831 /src/modules/my
parentprobable compilation fix for rijndaled/crypto++ (diff)
downloadKVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.gz
KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.tar.bz2
KVIrc-c601b5a27f74b16158adafe429faefbe573e64a2.zip
The big rename for modules. Still some details remaining.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5284 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/my')
-rw-r--r--src/modules/my/CMakeLists.txt8
-rw-r--r--src/modules/my/Idle.cpp (renamed from src/modules/my/idle.cpp)6
-rw-r--r--src/modules/my/Idle.h (renamed from src/modules/my/idle.h)2
-rw-r--r--src/modules/my/Idle_mac.cpp (renamed from src/modules/my/idle_mac.cpp)4
-rw-r--r--src/modules/my/Idle_win.cpp (renamed from src/modules/my/idle_win.cpp)4
-rw-r--r--src/modules/my/Idle_x11.cpp (renamed from src/modules/my/idle_x11.cpp)4
-rw-r--r--src/modules/my/libkvimy.cpp2
7 files changed, 15 insertions, 15 deletions
diff --git a/src/modules/my/CMakeLists.txt b/src/modules/my/CMakeLists.txt
index 89248553d..b1b498504 100644
--- a/src/modules/my/CMakeLists.txt
+++ b/src/modules/my/CMakeLists.txt
@@ -1,14 +1,14 @@
# CMakeLists for src/modules/my
SET(kvimy_MOC_HDRS
- idle.h
+ Idle.h
)
SET(kvimy_SRCS
libkvimy.cpp
- idle_x11.cpp
- idle_mac.cpp
- idle.cpp
+ Idle_x11.cpp
+ Idle_mac.cpp
+ Idle.cpp
)
# After this call, files will be moc'ed to moc_kvi_*.cpp
diff --git a/src/modules/my/idle.cpp b/src/modules/my/Idle.cpp
index e7fd4fd5c..4dd6f3cb1 100644
--- a/src/modules/my/idle.cpp
+++ b/src/modules/my/Idle.cpp
@@ -1,5 +1,5 @@
/*
- * idle.cpp - detect desktop idle time
+ * Idle.cpp - detect desktop idle time
* Copyright (C) 2003 Justin Karneges
*
* This library is free software; you can redistribute it and/or
@@ -18,7 +18,7 @@
*
*/
-#include"idle.h"
+#include"Idle.h"
#include <QCursor>
#include <QDateTime>
@@ -131,5 +131,5 @@ void Idle::doCheck()
}
#ifndef COMPILE_USE_STANDALONE_MOC_SOURCES
-#include "idle.moc"
+#include "Idle.moc"
#endif //!COMPILE_USE_STANDALONE_MOC_SOURCES
diff --git a/src/modules/my/idle.h b/src/modules/my/Idle.h
index 798f59a10..1f434f1b9 100644
--- a/src/modules/my/idle.h
+++ b/src/modules/my/Idle.h
@@ -1,7 +1,7 @@
#ifndef _IDLE_H_
#define _IDLE_H_
/*
- * idle.h - detect desktop idle time
+ * Idle.h - detect desktop idle time
* Copyright (C) 2003 Justin Karneges
*
* This library is free software; you can redistribute it and/or
diff --git a/src/modules/my/idle_mac.cpp b/src/modules/my/Idle_mac.cpp
index 4dc8fb480..543b1c326 100644
--- a/src/modules/my/idle_mac.cpp
+++ b/src/modules/my/Idle_mac.cpp
@@ -1,5 +1,5 @@
/*
- * idle_mac.cpp - detect desktop idle time
+ * Idle_mac.cpp - detect desktop idle time
* Copyright (C) 2003 Tarkvara Design Inc.
*
* This library is free software; you can redistribute it and/or
@@ -20,7 +20,7 @@
#ifdef COMPILE_ON_MAC
- #include "idle.h"
+ #include "Idle.h"
#include <Carbon/Carbon.h>
// Why does Apple have to make this so complicated?
diff --git a/src/modules/my/idle_win.cpp b/src/modules/my/Idle_win.cpp
index 3a1469928..3317d255d 100644
--- a/src/modules/my/idle_win.cpp
+++ b/src/modules/my/Idle_win.cpp
@@ -1,5 +1,5 @@
/*
- * idle_win.cpp - detect desktop idle time
+ * Idle_win.cpp - detect desktop idle time
* Copyright (C) 2003 Justin Karneges
*
* This library is free software; you can redistribute it and/or
@@ -19,7 +19,7 @@
*/
#if defined(COMPILE_ON_WINDOWS) || defined(COMPILE_ON_MINGW)
- #include "idle.h"
+ #include "Idle.h"
#include <QLibrary>
#include< windows.h>
diff --git a/src/modules/my/idle_x11.cpp b/src/modules/my/Idle_x11.cpp
index 41dc87017..9b4c4a062 100644
--- a/src/modules/my/idle_x11.cpp
+++ b/src/modules/my/Idle_x11.cpp
@@ -1,5 +1,5 @@
/*
- * idle_x11.cpp - detect desktop idle time
+ * Idle_x11.cpp - detect desktop idle time
* Copyright (C) 2003 Justin Karneges
*
* This library is free software; you can redistribute it and/or
@@ -20,7 +20,7 @@
#ifndef COMPILE_ON_MAC
#if !defined(COMPILE_ON_WINDOWS) && !defined(COMPILE_ON_MINGW)
-#include"idle.h"
+#include"Idle.h"
#ifndef COMPILE_XSS_SUPPORT
IdlePlatform::IdlePlatform() {}
diff --git a/src/modules/my/libkvimy.cpp b/src/modules/my/libkvimy.cpp
index ee0e1b4d0..00972553b 100644
--- a/src/modules/my/libkvimy.cpp
+++ b/src/modules/my/libkvimy.cpp
@@ -32,7 +32,7 @@
#include "KviIrcConnectionServerInfo.h"
#include "KviIrcServer.h"
-#include "idle.h"
+#include "Idle.h"
Idle* g_pIdle;
#define GET_KVS_CONSOLE \