Skip to content

Commit c680830

Browse files
committed
merge some whitespace changes from stable_python27 branch
1 parent 3a7021c commit c680830

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

PythonScript/src/ConsoleDialog.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,9 @@ INT_PTR CALLBACK ConsoleDialog::run_dlgProc(UINT message, WPARAM wParam, LPARAM
208208
//MessageBox(NULL, _T("Command") , _T("Python Command"), 0);
209209
return FALSE;
210210
}
211-
else if (LOWORD(wParam) == IDCANCEL)
212-
{
213-
::SetFocus(getCurrScintilla());
211+
else if (LOWORD(wParam) == IDCANCEL)
212+
{
213+
::SetFocus(getCurrScintilla());
214214
return FALSE;
215215
}
216216
break;

PythonScript/src/NotepadPlusWrapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ class NotepadPlusWrapper
700700
void setStatusBar(StatusBarSection section, const char *text);
701701

702702
intptr_t getPluginMenuHandle();
703-
703+
704704
intptr_t hwnd;
705705

706706
void activateIndex(int view, int index);

PythonScript/src/PythonConsole.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ void PythonConsole::writeError(boost::python::object text)
238238
{
239239
std::string textToWrite((const char *)boost::python::extract<const char *>(text.attr("__str__")()));
240240
GILRelease release;
241-
mp_consoleDlg->writeError(textToWrite.size(),textToWrite.c_str());
241+
mp_consoleDlg->writeError(textToWrite.size(),textToWrite.c_str());
242242
}
243243
}
244244
}

0 commit comments

Comments
 (0)