Skip to content
Snippets Groups Projects
Commit db32373b authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

fix some typos caused by trusting emacs' smart case-preserving replace too much

parent 9d7c4ac5
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,6 @@
#include <cstring>
#include "kspace_deprecated.h"
#include "kspace_hybrid.h"
#include "comm.h"
#include "force.h"
#include "error.h"
......@@ -36,14 +35,14 @@ static void writemsg(LAMMPS *lmp, const char *msg, int abend=1)
/* ---------------------------------------------------------------------- */
void KspaceDeprecated::settings(int, char **)
void KSpaceDeprecated::settings(int, char **)
{
const char *my_style = force->kspace_style;
if (strcmp(my_style,"DEPRECATED") == 0) {
writemsg(lmp,"\nKspace style 'DEPRECATED' is a dummy style\n\n",0);
writemsg(lmp,"\nKSpace style 'DEPRECATED' is a dummy style\n\n",0);
}
}
}
......@@ -13,7 +13,7 @@
#ifdef KSPACE_CLASS
KspaceStyle(DEPRECATED,KspaceDeprecated)
KSpaceStyle(DEPRECATED,KSpaceDeprecated)
#else
......@@ -24,12 +24,13 @@ KspaceStyle(DEPRECATED,KspaceDeprecated)
namespace LAMMPS_NS {
class KspaceDeprecated : public Kspace {
class KSpaceDeprecated : public KSpace {
public:
KspaceDeprecated(class LAMMPS *lmp) : Kspace(lmp) {}
virtual ~KspaceDeprecated() {}
KSpaceDeprecated(class LAMMPS *lmp) : KSpace(lmp) {}
virtual ~KSpaceDeprecated() {}
virtual void init() {}
virtual void settings(int, char**);
virtual void setup() {}
virtual void compute(int, int) {}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment