Skip to content

Commit a64304c

Browse files
committed
[LINT] error 1526
Member function 'Symbol' (Location) not defined Some methods were defined in the headers files but never implemented. Signed-off-by: Jocelyn Legault <jocelynlegault@gmail.com>
1 parent 1ce219a commit a64304c

4 files changed

Lines changed: 2 additions & 12 deletions

File tree

PythonScript/src/ConfigFile.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class ConfigFile
3737
const tstring& getConfigDir() { return m_configDir; };
3838

3939
protected:
40-
explicit ConfigFile(const TCHAR *configDir);
4140
void readConfig();
4241

4342
private:

PythonScript/src/MenuManager.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class MenuManager
2222

2323
public:
2424

25-
MenuManager();
2625
~MenuManager();
2726

2827
typedef std::vector<std::pair<tstring, void (*)()> > ItemVectorTD;
@@ -74,9 +73,9 @@ class MenuManager
7473

7574

7675
private:
77-
MenuManager(HWND hNotepad, HINSTANCE hInst, void(*runScript)(const char *, bool, HANDLE, bool));
76+
MenuManager(); // default constructor disabled
7877

79-
78+
MenuManager(HWND hNotepad, HINSTANCE hInst, void(*runScript)(const char *, bool, HANDLE, bool));
8079

8180
HMENU getOurMenu();
8281
bool findScripts(HMENU hBaseMenu, int basePathLength, std::string& path);

PythonScript/src/NotepadPlusWrapper.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -471,8 +471,6 @@ class NotepadPlusWrapper
471471

472472
void saveAllFiles();
473473

474-
void setFilename(const char *filename);
475-
476474
boost::python::str getPluginConfigDir();
477475

478476

@@ -486,8 +484,6 @@ class NotepadPlusWrapper
486484

487485
void showTabBar();
488486

489-
bool isTabBarShown();
490-
491487
int getCurrentBufferID();
492488

493489
void reloadBuffer(int bufferID, bool withAlert = true);

PythonScript/src/PythonConsole.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,16 @@ class PythonConsole : public NppPythonScript::PyProducerConsumer<std::string>, p
3333
void writeText(boost::python::object text);
3434
void writeError(boost::python::object text);
3535
void clear();
36-
void stopScript();
37-
3836

3937
/* Console Interface members */
4038
void runStatement(const char *statement);
4139
void stopStatement();
42-
void setPrompt(const char *prompt);
4340
void openFile(const char *filename, int lineNumber);
4441

4542
/* ConsoleInterface end */
4643

4744

4845
static void stopStatementWorker(PythonConsole *console);
49-
bool runStatementWorker(const char *statement);
5046

5147
long runCommand(boost::python::str text, boost::python::object pyStdout, boost::python::object pyStderr);
5248
long runCommandNoStderr(boost::python::str text, boost::python::object pyStdout)

0 commit comments

Comments
 (0)