Major rework of headers inclusion style on behalf of lebedev.ri (issue 1079)

This commit is contained in:
michael
2011-12-17 12:08:57 -05:00
parent d5c07f18b5
commit bf71a01ca5
303 changed files with 1180 additions and 6702 deletions

View File

@@ -15,13 +15,13 @@
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
*/
#include <editwindow.h>
#include <options.h>
#include <preferences.h>
#include <cursormanager.h>
#include <rtwindow.h>
#include "editwindow.h"
#include "options.h"
#include "preferences.h"
#include "cursormanager.h"
#include "rtwindow.h"
#include <gtk/gtkwidget.h>
#include <rtimage.h>
#include "rtimage.h"
static EditWindow* editWnd = NULL;
@@ -161,11 +161,11 @@ void EditWindow::remEditorPanel (EditorPanel* ep) {
}
bool EditWindow::selectEditorPanel(const std::string &name) {
std::map<Glib::ustring, EditorPanel*>::iterator iep = epanels.find(name);
if (iep!=epanels.end()) {
mainNB->set_current_page (mainNB->page_num (*iep->second));
return true;
std::map<Glib::ustring, EditorPanel*>::iterator iep = epanels.find(name);
if (iep!=epanels.end()) {
mainNB->set_current_page (mainNB->page_num (*iep->second));
return true;
}
return false;
}