aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorThierry Crozat2016-09-09 22:28:48 +0100
committerThierry Crozat2016-09-09 22:28:48 +0100
commitdff88b105885e0ed3766f5e86c0d7f606348634a (patch)
treebf82db6351e4f956b3fe53d625d88270bbe29412 /common
parent92b22b4c8a8ad5caf7b258abc7074b4681af49d1 (diff)
downloadscummvm-rg350-dff88b105885e0ed3766f5e86c0d7f606348634a.tar.gz
scummvm-rg350-dff88b105885e0ed3766f5e86c0d7f606348634a.tar.bz2
scummvm-rg350-dff88b105885e0ed3766f5e86c0d7f606348634a.zip
COMMON: Fix indentation inconsistencies
Diffstat (limited to 'common')
-rw-r--r--common/system.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/common/system.h b/common/system.h
index 805eba68ed..8a05a9664b 100644
--- a/common/system.h
+++ b/common/system.h
@@ -317,11 +317,11 @@ public:
kFeatureDisplayLogFile,
/**
- * The presence of this feature indicates whether the hasTextInClipboard()
- * and getTextFromClipboard() calls are supported.
- *
- * This feature has no associated state.
- */
+ * The presence of this feature indicates whether the hasTextInClipboard()
+ * and getTextFromClipboard() calls are supported.
+ *
+ * This feature has no associated state.
+ */
kFeatureClipboardSupport
};
@@ -1247,25 +1247,25 @@ public:
virtual bool displayLogFile() { return false; }
/**
- * Returns whether there is text available in the clipboard.
- *
- * The kFeatureClipboardSupport feature flag can be used to
- * test whether this call has been implemented by the active
- * backend.
- *
- * @return true if there is text in the clipboard, false otherwise
- */
+ * Returns whether there is text available in the clipboard.
+ *
+ * The kFeatureClipboardSupport feature flag can be used to
+ * test whether this call has been implemented by the active
+ * backend.
+ *
+ * @return true if there is text in the clipboard, false otherwise
+ */
virtual bool hasTextInClipboard() { return false; }
/**
- * Returns clipboard contents as a String.
- *
- * The kFeatureClipboardSupport feature flag can be used to
- * test whether this call has been implemented by the active
- * backend.
- *
- * @return clipboard contents ("" if hasTextInClipboard() == false)
- */
+ * Returns clipboard contents as a String.
+ *
+ * The kFeatureClipboardSupport feature flag can be used to
+ * test whether this call has been implemented by the active
+ * backend.
+ *
+ * @return clipboard contents ("" if hasTextInClipboard() == false)
+ */
virtual Common::String getTextFromClipboard() { return ""; }
/**