1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 447897 - [visualizer] change access level for members in class

MulticoreVisualizerSelectionFinder

Change-Id: I09fb88e186198e4c6d1cd033ca6df3399ce16d6c
Reviewed-on: https://git.eclipse.org/r/35122
Reviewed-by: Marc Dumais <marc.dumais@ericsson.com>
Tested-by: Marc Dumais <marc.dumais@ericsson.com>
This commit is contained in:
Marc Dumais 2014-10-20 07:31:15 -04:00
parent 197e893939
commit 6542690eff

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2012 Tilera Corporation and others. * Copyright (c) 2012, 2014 Tilera Corporation and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -7,6 +7,7 @@
* *
* Contributors: * Contributors:
* William R. Swanson (Tilera Corporation) - initial API and implementation * William R. Swanson (Tilera Corporation) - initial API and implementation
* Marc Dumais (Ericsson) - bug 447897
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.dsf.gdb.multicorevisualizer.internal.ui.view; package org.eclipse.cdt.dsf.gdb.multicorevisualizer.internal.ui.view;
@ -40,10 +41,10 @@ public class MulticoreVisualizerSelectionFinder
// --- members --- // --- members ---
/** Selection item(s) we're currently looking for. */ /** Selection item(s) we're currently looking for. */
List<Object> m_selection = null; protected List<Object> m_selection = null;
/** Result we're found, if any. */ /** Result we've found, if any. */
Set<Object> m_result = null; protected Set<Object> m_result = null;
// --- constructors/destructors --- // --- constructors/destructors ---