summaryrefslogtreecommitdiff
path: root/desktop/source/migration/migration_impl.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-22 09:22:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-22 09:23:50 +0100
commit6e0676324e96a05ad1d211a3a59e5c0ad3efcac5 (patch)
treeab89d30cf65e2c0ba717c38ace34e39884bbdd05 /desktop/source/migration/migration_impl.hxx
parentc8b9cbde1d5826931023cae062ba5c60da36820d (diff)
Re-indent to make precedence clear
Change-Id: Ibbc35d1a9264817f3fa8e3229ec1de5f51800e97
Diffstat (limited to 'desktop/source/migration/migration_impl.hxx')
-rw-r--r--desktop/source/migration/migration_impl.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/desktop/source/migration/migration_impl.hxx b/desktop/source/migration/migration_impl.hxx
index 9dab246792da..4ab670887080 100644
--- a/desktop/source/migration/migration_impl.hxx
+++ b/desktop/source/migration/migration_impl.hxx
@@ -124,12 +124,13 @@ struct MigrationItem
bool operator==(const MigrationItem& aMigrationItem)
{
- return ((aMigrationItem.m_sCommandURL == m_sCommandURL
- || (areBothOpenFrom(aMigrationItem.m_sCommandURL, m_sCommandURL)
- || areBothOpenFrom(m_sCommandURL, aMigrationItem.m_sCommandURL)))
+ return
+ (aMigrationItem.m_sCommandURL == m_sCommandURL
+ || areBothOpenFrom(aMigrationItem.m_sCommandURL, m_sCommandURL)
+ || areBothOpenFrom(m_sCommandURL, aMigrationItem.m_sCommandURL))
&& aMigrationItem.m_sParentNodeName == m_sParentNodeName
&& aMigrationItem.m_sPrevSibling == m_sPrevSibling
- && aMigrationItem.m_xPopupMenu.is() == m_xPopupMenu.is() );
+ && aMigrationItem.m_xPopupMenu.is() == m_xPopupMenu.is();
}
};