Skip to content

Commit

Permalink
v1.0.1c - Fixed macOS x64 compatibility
Browse files Browse the repository at this point in the history
Made minimal updates to allow application to be
rebuilt in recent 64-bit-only versions of macOS.
  • Loading branch information
jpgill86 committed Aug 25, 2021
1 parent d3dca5e commit 706417c
Show file tree
Hide file tree
Showing 20 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/atom.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* atom.c
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/atom.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* atom.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/ctrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* GUI control panel
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/ctrl.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* ctrl.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
10 changes: 5 additions & 5 deletions src/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* The main application GUI.
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down Expand Up @@ -412,8 +412,8 @@ NernstGUI::about()
QMessageBox::about( this, "About Nernst Potential Simulator",
"<h3>About Nernst Potential Simulator</h3><br>"
"<br>"
"Version 1.0.1b<br>"
"Copyright &copy; 2015 "
"Version 1.0.1c<br>"
"Copyright &copy; 2021 "
"Jeffrey Gill, Barry Rountree, Kendrick Shaw, "
"Catherine Kehl, Jocelyn Eckert, "
"and Dr. Hillel J. Chiel.<br>"
Expand All @@ -424,8 +424,8 @@ NernstGUI::about()
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.<br>"
"<br>"
"Have a suggestion? Find a bug? Send us your comments "
"at <a href='mailto:autopoiesis@case.edu'>"
"autopoiesis@case.edu</a>." );
"at <a href='mailto:neuroinstructors@case.edu'>"
"neuroinstructors@case.edu</a>." );
}


Expand Down
2 changes: 1 addition & 1 deletion src/gui.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* gui.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* main.cpp
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
6 changes: 3 additions & 3 deletions src/options.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* options.c
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down Expand Up @@ -57,10 +57,10 @@ char
*version[] =
{
"Nernst potential simulator.",
"(C) 2015 Jeffrey Gill, Barry Rountree, Kendrick Shaw, Catherine Kehl,",
"(C) 2021 Jeffrey Gill, Barry Rountree, Kendrick Shaw, Catherine Kehl,",
" Jocelyn Eckert, and Dr. Hillel J. Chiel",
"",
"Version 1.0.1b",
"Version 1.0.1c",
"Released under the GPL version 3 or any later version.",
"This is free software; see the source for copying conditions. There is NO",
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.",
Expand Down
2 changes: 1 addition & 1 deletion src/options.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* options.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/paint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* GUI visualization
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/paint.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* paint.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/sim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* The engine of the simulation without GUI support.
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/sim.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* sim.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/status.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* The GUI's status bar.
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/status.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* status.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/util.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* util.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/world.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* world.c
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/world.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* world.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/xsim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* The engine of the simulation with GUI support.
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down
2 changes: 1 addition & 1 deletion src/xsim.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* xsim.h
*
*
* Copyright (c) 2015, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Copyright (c) 2021, Jeffrey Gill, Barry Rountree, Kendrick Shaw,
* Catherine Kehl, Jocelyn Eckert, and Dr. Hillel J. Chiel
*
* This file is part of Nernst Potential Simulator.
Expand Down

0 comments on commit 706417c

Please sign in to comment.