Changeset 247 for cpp/frams/canvas


Ignore:
Timestamp:
11/07/14 17:51:01 (9 years ago)
Author:
Maciej Komosinski
Message:

Sources support both 32-bit and 64-bit, and more compilers

Location:
cpp/frams/canvas
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/canvas/neurodiagram.cpp

    r240 r247  
    235235}
    236236
    237 void NeuroDiagram::onKill(void*obj, long dummy)
     237void NeuroDiagram::onKill(void*obj, intptr_t dummy)
    238238{
    239239        show(0);
     
    678678////
    679679
    680 void NeuroDiagram::probeSampling(void*obj, long dummy)
     680void NeuroDiagram::probeSampling(void*obj, intptr_t dummy)
    681681{
    682682        FOREACH(NeuroProbe*,pr,probes) pr->sampling();
  • cpp/frams/canvas/nn_smart_layout.cpp

    r197 r247  
    66#include <vector>
    77#include "common/nonstd_stl.h"
     8#ifdef __BORLANDC__
     9 #include <alloc.h> //borland needs for alloc/free
     10#endif
    811
    912#define DB(x)
Note: See TracChangeset for help on using the changeset viewer.