Skip to content

Commit

Permalink
Updated to new version
Browse files Browse the repository at this point in the history
  • Loading branch information
vbmacher committed Aug 26, 2010
1 parent 2ed364c commit e41e101
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions src/emustudio/architecture/Computer.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,17 +241,12 @@ else if (p instanceof ICompiler)
public boolean isConnected(long pluginID, long toPluginID) {
ArrayList<Long> ar = connections.get(pluginID);

System.out.print("isConnected(" + pluginID + ", " + toPluginID + "): ");

if ((ar == null) || ar.isEmpty()) {
System.out.println("empty");
return false;
}
if (ar.contains(toPluginID)) {
System.out.println("true");
return true;
}
System.out.println("false: " + ar.toString());
return false;
}
}
2 changes: 1 addition & 1 deletion src/emustudio/gui/AboutDialog.form
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
<Font name="Tahoma" size="11" style="1"/>
</Property>
<Property name="text" type="java.lang.String" value="0.36-rc1"/>
<Property name="text" type="java.lang.String" value="0.37b"/>
</Properties>
</Component>
<Component class="javax.swing.JLabel" name="jLabel4">
Expand Down
4 changes: 2 additions & 2 deletions src/emustudio/gui/AboutDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ private void initComponents() {
.addContainerGap())
);

lblName.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
lblName.setFont(new java.awt.Font("Tahoma", 1, 18));
lblName.setText("emuStudio");

lblCopyright.setText("© Copyright 2006-2010, Peter Jakubčo");

lblVersion.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
lblVersion.setText("0.36-rc1");
lblVersion.setText("0.37b");

jLabel4.setText("version:");

Expand Down

0 comments on commit e41e101

Please sign in to comment.