removed duplicated docs in android qsharedmemory and systemsemaphore

Qdoc sees all source and header files, rather than the subset selected
by qmake. This leads to qdoc errors when the same functions are
documented in multiple implementations.

In the cases fixed here, all documentation was duplicated, so no
information was lost.

Change-Id: Id7f8e2e617862a3778d0b05b38d8811aad456ac5
Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
This commit is contained in:
Jeremy Katz 2012-07-27 14:10:20 +02:00 committed by Qt by Nokia
parent 339dc331fd
commit e2f40da257
2 changed files with 0 additions and 27 deletions

View File

@ -60,11 +60,6 @@ void QSharedMemoryPrivate::setErrorString(const QString &function)
qWarning() << Q_FUNC_INFO << "Not yet implemented on Android";
}
/*!
\internal
If not already made create the handle used for accessing the shared memory.
*/
key_t QSharedMemoryPrivate::handle()
{
qWarning() << Q_FUNC_INFO << "Not yet implemented on Android";
@ -74,15 +69,6 @@ key_t QSharedMemoryPrivate::handle()
#endif // QT_NO_SHAREDMEMORY
#if !(defined(QT_NO_SHAREDMEMORY) && defined(QT_NO_SYSTEMSEMAPHORE))
/*!
\internal
Creates the unix file if needed.
returns true if the unix file was created.
-1 error
0 already existed
1 created
*/
int QSharedMemoryPrivate::createUnixKeyFile(const QString &fileName)
{
qWarning() << Q_FUNC_INFO << "Not yet implemented on Android";

View File

@ -59,30 +59,17 @@ void QSystemSemaphorePrivate::setErrorString(const QString &function)
qWarning() << Q_FUNC_INFO << "Not yet implemented on Android";
}
/*!
\internal
Setup unix_key
*/
key_t QSystemSemaphorePrivate::handle(QSystemSemaphore::AccessMode mode)
{
qWarning() << Q_FUNC_INFO << "Not yet implemented on Android";
return -1;
}
/*!
\internal
Cleanup the unix_key
*/
void QSystemSemaphorePrivate::cleanHandle()
{
qWarning() << Q_FUNC_INFO << "Not yet implemented on Android";
}
/*!
\internal
*/
bool QSystemSemaphorePrivate::modifySemaphore(int count)
{
qWarning() << Q_FUNC_INFO << "Not yet implemented on Android";