summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVenugopal Shivashankar <venugopal.shivashankar@digia.com>2015-11-12 12:02:23 +0100
committerVenugopal Shivashankar <venugopal.shivashankar@digia.com>2015-11-20 09:20:43 +0000
commitb4c05af96fd84d0ab1b57959f0c98b045a7960c8 (patch)
tree5b077bbaf15289f5cef6e10f9e6eecece792e71b
parent37e86bad4ec8330cb7c2e3132b6510f047151db3 (diff)
downloadqtdoc-b4c05af96fd84d0ab1b57959f0c98b045a7960c8.tar.gz
Doc: Replace \code with \badcode
Most instances of \code were listing a CLI command or an entry in the Makefile, which are not candidates for code highlighting. So switching to \badcode is ideal. Change-Id: I3f08910e26e040073be8dc23bd0902937b223b33 Reviewed-by: Martin Smith <martin.smith@theqtcompany.com>
-rw-r--r--doc/src/platforms/android.qdoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/platforms/android.qdoc b/doc/src/platforms/android.qdoc
index 43349746..20dadaa1 100644
--- a/doc/src/platforms/android.qdoc
+++ b/doc/src/platforms/android.qdoc
@@ -120,7 +120,7 @@ The following topics provide more details about how to use Qt for Android:
In our example, we would create \c{$PROJECT_ROOT/android/project.properties} and add the
following contents:
- \code
+ \badcode
android.library.reference.1=google-play-services_lib/
\endcode
@@ -167,7 +167,7 @@ starts the \l{http://developer.android.com/sdk/installing/adding-packages.html}
{Android SDK Manager}, which enables you to select the packages you want
to install:
-\code
+\badcode
./android update sdk
\endcode
@@ -175,7 +175,7 @@ to install:
following dependencies in order to run 32-bit executables like \c adb, which
allows Qt Creator to find devices to deploy to:
-\code
+\badcode
sudo apt-get install libstdc++6:i386 libgcc1:i386 zlib1g:i386 libncurses5:i386
\endcode
@@ -296,7 +296,7 @@ the APK:
\li Set the following environment variables to point to the ARM compiler
toolchain and sysroot you want to use:
- \code
+ \badcode
CC=<ANDROID_NDK_PATH>/toolchains/arm-linux-androideabi-<VER>/prebuilt/<NDK_HOST>/bin/arm-linux-androideabi-gcc
AR=<ANDROID_NDK_PATH>/toolchains/arm-linux-androideabi-<VER>/prebuilt/<NDK_HOST>/bin/arm-linux-androideabi-ar
ANDROID_DEV=<ANDROID_NDK_PATH>/platforms/android-9/arch-arm/usr
@@ -305,7 +305,7 @@ the APK:
\li Configure the OpenSSL sources to build for Android (ARMv5 or ARMv7) using
the following command:
- \code
+ \badcode
./Configure shared android or android-armv7
\endcode