Skip to content

Commit

Permalink
Idea 14 compatibility fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicity committed Jan 20, 2015
1 parent 81a7cae commit 4c06e5c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 7 additions & 2 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<idea-plugin>
<name>C/C++</name>
<version>0.8 build 6</version>
<idea-version since-build="131.1" until-build="136.0"/>
<idea-version since-build="139.1" until-build="140.0"/>
<depends>com.intellij.modules.lang</depends>
<depends optional="true" config-file="exended_platform.xml">com.intellij.modules.java</depends>
<vendor url="http://bugs.cpptools.com" email="[email protected]">AdvancedTools</vendor>
Expand All @@ -15,11 +15,16 @@
cpp files and build for makefile/dsp/vcproj files and more.&lt;br&gt;
Debugging support consists of GDB integration exposed as idea debugger interface.&lt;br&gt;
EAP software, works only for Win32/(MsVc/Gcc + CygWin/MingW), Linux 32bit /Intel/Gcc, MacOSX/Intel/Gcc platforms with
IntelliJ Idea 13 / 13.1 Ultimate / Community editions (builds 131.* - 135.*),
IntelliJ Idea 14 Ultimate / Community editions (builds 139.*),
WebStorm.&lt;br&gt;
&lt;a href="http://www.cpptools.com/IDEA/Readme.html"&gt;Detailed readme&lt;/a&gt; and &lt;a href="http://youradvtools.blogspot.com/"&gt;blog&lt;/a&gt;
</description>
<change-notes>
&lt;b&gt;In 0.8.7:&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt; IntelliJ Idea 14 and branch 139 (e.g. WebStorm 9) compatibility fixes.
&lt;li&gt; Dropped Idea 13.X support
&lt;/ul&gt;
&lt;b&gt;In 0.8.6:&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt; IntelliJ Idea 13 and 13.1 branch fix (e.g. WebStorm 7/8) compatibility fixes.
Expand Down
4 changes: 1 addition & 3 deletions src/com/advancedtools/cpp/run/CppRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@ protected RunContentDescriptor doExecute(Project project, RunProfileState runPro

ExecutionResult executionResult = runProfileState.execute(executor, this);
if (executionResult == null) return null;
final RunContentBuilder contentBuilder = new RunContentBuilder(this, executionResult, executionEnvironment);
contentBuilder.setEnvironment(executionEnvironment);
final RunContentBuilder contentBuilder = new RunContentBuilder(executionResult, executionEnvironment);
onProcessStarted(executionEnvironment.getRunnerSettings(), executionResult);
contentBuilder.setExecutionResult(executionResult);

return contentBuilder.showRunContent(runContentDescriptor);
}
Expand Down

0 comments on commit 4c06e5c

Please sign in to comment.