Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code clean up #3366

Merged
merged 17 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CodeLite/clJoinableThread.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#ifndef CSJOINABLETHREAD_H
#define CSJOINABLETHREAD_H

#include "clJoinableThread.h"
#include "codelite_exports.h"

#include <wx/thread.h>

class WXDLLIMPEXP_CL clJoinableThread : public wxThread
{
protected:
Expand Down
2 changes: 0 additions & 2 deletions CodeLite/event_notifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@

class WXDLLIMPEXP_CL EventNotifier : public wxEvtHandler
{
bool _eventsDiabled;

private:
EventNotifier();
virtual ~EventNotifier();
Expand Down
2 changes: 1 addition & 1 deletion CodeLite/fileutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class WXDLLIMPEXP_CL FileUtils
* wxString str = "My String That Requires Tokenize";
* wxString word; // The output
* size_t offset = 0;
* while(clNextWord(str, offset, word)) {
* while (NextWord(str, offset, word)) {
* // Do something with "word" here
* }
* @codeend
Expand Down
6 changes: 0 additions & 6 deletions Plugin/clTabRendererMinimal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@
#include <wx/settings.h>
#include <wx/stc/stc.h>

#define DRAW_LINE(__p1, __p2) \
dc.DrawLine(__p1, __p2); \
dc.DrawLine(__p1, __p2); \
dc.DrawLine(__p1, __p2); \
dc.DrawLine(__p1, __p2);

namespace
{
#ifdef __WXMAC__
Expand Down
Loading
Loading