-rw-r--r-- | libopie2/opiecore/oconfig.cpp | 2 | ||||
-rw-r--r-- | libopie2/opiecore/ofilenotify.cpp | 2 | ||||
-rw-r--r-- | libopie2/opiecore/opluginloader.h | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/libopie2/opiecore/oconfig.cpp b/libopie2/opiecore/oconfig.cpp index 05d8070..6b57729 100644 --- a/libopie2/opiecore/oconfig.cpp +++ b/libopie2/opiecore/oconfig.cpp | |||
@@ -110,12 +110,14 @@ QColor OConfig::readColorEntry( const QString& key, const QColor* pDefault ) con | |||
110 | } | 110 | } |
111 | 111 | ||
112 | // FIXME: The whole font handling has to be revised for Opie | 112 | // FIXME: The whole font handling has to be revised for Opie |
113 | 113 | ||
114 | QFont OConfig::readFontEntry( const QString& key, const QFont* pDefault ) const | 114 | QFont OConfig::readFontEntry( const QString& key, const QFont* pDefault ) const |
115 | { | 115 | { |
116 | Q_CONST_UNUSED( key ) | ||
117 | Q_CONST_UNUSED( pDefault ) | ||
116 | /* | 118 | /* |
117 | QFont aRetFont; | 119 | QFont aRetFont; |
118 | 120 | ||
119 | QString aValue = readEntry( key ); | 121 | QString aValue = readEntry( key ); |
120 | if( !aValue.isNull() ) { | 122 | if( !aValue.isNull() ) { |
121 | if ( aValue.contains( ',' ) > 5 ) { | 123 | if ( aValue.contains( ',' ) > 5 ) { |
diff --git a/libopie2/opiecore/ofilenotify.cpp b/libopie2/opiecore/ofilenotify.cpp index b576c4f..2a9bb8c 100644 --- a/libopie2/opiecore/ofilenotify.cpp +++ b/libopie2/opiecore/ofilenotify.cpp | |||
@@ -246,12 +246,14 @@ void OFileNotification::singleShot( const QString& path, QObject* receiver, cons | |||
246 | ofn->start( path, true, type ); | 246 | ofn->start( path, true, type ); |
247 | } | 247 | } |
248 | 248 | ||
249 | 249 | ||
250 | void OFileNotification::__signalHandler( int sig, siginfo_t *si, void *data ) | 250 | void OFileNotification::__signalHandler( int sig, siginfo_t *si, void *data ) |
251 | { | 251 | { |
252 | Q_UNUSED( sig ) | ||
253 | Q_UNUSED( data ) | ||
252 | qWarning( "OFileNotification::__signalHandler(): reached." ); | 254 | qWarning( "OFileNotification::__signalHandler(): reached." ); |
253 | int fd = si->si_fd; | 255 | int fd = si->si_fd; |
254 | OFileNotification* fn = notification_list[fd]; | 256 | OFileNotification* fn = notification_list[fd]; |
255 | if ( fn ) | 257 | if ( fn ) |
256 | { | 258 | { |
257 | // check if it really was the file (dnotify triggers on directory granularity, not file granularity) | 259 | // check if it really was the file (dnotify triggers on directory granularity, not file granularity) |
diff --git a/libopie2/opiecore/opluginloader.h b/libopie2/opiecore/opluginloader.h index d97f586..ee47733 100644 --- a/libopie2/opiecore/opluginloader.h +++ b/libopie2/opiecore/opluginloader.h | |||
@@ -61,13 +61,14 @@ private: | |||
61 | /** | 61 | /** |
62 | * \brief A generic class to easily load and manage plugins | 62 | * \brief A generic class to easily load and manage plugins |
63 | * | 63 | * |
64 | * This is the generic non sepcialised loader for plugins. Normally | 64 | * This is the generic non sepcialised loader for plugins. Normally |
65 | * you would prefer using the OPluginLoader directly. This class | 65 | * you would prefer using the OPluginLoader directly. This class |
66 | * exists to minimize the application binary size due the usage | 66 | * exists to minimize the application binary size due the usage |
67 | * of templates in the specialized API | 67 | * of templates in the specialized API. |
68 | * | ||
68 | * | 69 | * |
69 | * @since 1.2 | 70 | * @since 1.2 |
70 | * @see OPluginLoader | 71 | * @see OPluginLoader |
71 | */ | 72 | */ |
72 | class OGenericPluginLoader { | 73 | class OGenericPluginLoader { |
73 | public: | 74 | public: |