User yan bellavance - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:35:46Zhttp://stackoverflow.com/feeds/user/131981http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801167/how-can-i-connect-the-pressed-signal-of-32-buttons-to-a-single-function-without2How can I connect the pressed() signal of 32 buttons to a single function without declaring 32 slots?yan bellavance2009-11-26T01:56:09Z2009-11-26T16:38:20Z
<p>I have a widget and inside it are 32 buttons. I need to connect each button's pressed() signal to a slot in order to call a function who's parameters depend on which button I have pressed. Right now I did that by adding 32 slots in the form of on_QPushButtonName_pressed()
but thats a lot of slots. I was wondering if there is another way I could do it that is smaller. I have done something similar but I was working with custom widgets so I could just create a new signal in the code of my class but I would like to avoid creating a custom widget for just a single button.</p>
http://stackoverflow.com/questions/1744144/adding-ifndef-define-endif-breaks-the-compile0adding #ifndef #define #endif breaks the compileyan bellavance2009-11-16T19:01:01Z2009-11-25T20:53:17Z
<p>I added a #ifndef to a file of my project and the compile fails in this case. As soon as I remove it or put any other name in the define it compiles fine. What could be the problem. Sounds like the file is already declared but I do not know where. Im fine just removing it but I really want to know why it is doing this.</p>
<p>error: expected class-name before ‘{’ token
error: ‘QDesignerFormEditorInterface’ has not been declared</p>
<p>and a couple of other errors</p>
<p>I am actually using an example from Qt :"Custom Widget Plugin Example"</p>
<p>The difference is I am using my own class for the custom widget(.h, .cpp and .ui file).</p>
<p>link to the project: <a href="http://www.mediafire.com/file/mr4zdtd4vjr/xmitSetup.tar.gz" rel="nofollow">http://www.mediafire.com/file/mr4zdtd4vjr/xmitSetup.tar.gz</a></p>
<p>It might have to do with the file that has 2 includes, though that is how the example did it.</p>
<p>I have just added a link to the files so you can see. Its not much just 2 classes</p>
http://stackoverflow.com/questions/1799106/can-i-decide-where-a-qaction-is-added-to-a-qmenubar1Can I decide where a Qaction is added to a Qmenubar yan bellavance2009-11-25T18:42:50Z2009-11-25T19:02:36Z
<p>I need to add a QAction directly into a QMenuBar (not an QAction inside a QMenu but a QAction directly in the QMenuBar) I am able to do this with the following command. </p>
<p>ui->menuBar->addAction("VFTP",this, SLOT(VFTPmenuTrigger()) );</p>
<p>My only problem is that when I add it, it is appended to the end of the menu bar that I have built in Qt designer. I would like to be able to put it somewhere in the middle. Seems the only way I could do this is if I generate the menu bar by coding it only. Is there a way to build most of my menuBar in Qt Designer and then add that Qaction in the menu bar where I want? I hope I am clear and I added the QAction programmatically because it is not possible to do so with Qt (I know it sounds countintuitive to put a QAction directly in the menu bar but this is what the customer wants) </p>
http://stackoverflow.com/questions/1731620/is-there-a-way-to-have-all-radion-buttons-be-unchecked0Is there a way to have all radion buttons be uncheckedyan bellavance2009-11-13T20:16:02Z2009-11-13T22:48:01Z
<p>I have a QGroupBox with a couple of QRadioButtons inside of it and in certain cases I want all radio buttons to be unchecked. Seems that this is not possible when a selection has been made. Do you know of a way I could do this or should I add a hidden radiobutton and check that onen to get the desired result.</p>
http://stackoverflow.com/questions/1712199/styling-qpushbutton-with-css/1727615#17276150Answer by yan bellavance for Styling QPushButton with CSS?yan bellavance2009-11-13T07:03:42Z2009-11-13T07:03:42Z<p>open the button's stylesheet in Qt designer and try this:<br><code>
QPushButton:pressed {
image: url(/path/to/your/file/fileName.png);
}
</code></p>
http://stackoverflow.com/questions/1725601/qt-increase-qtabwidgets-qtabbar-size/1727593#17275931Answer by yan bellavance for Qt Increase QTabWidget's QTabBar sizeyan bellavance2009-11-13T06:55:58Z2009-11-13T06:55:58Z<p>If your using Qt Designer you can simply put <code>QTabBar::tab { height: 100px; width: 100px; }</code> in the stylesheet property of the QTabWidget objet directly</p>
http://stackoverflow.com/questions/1719353/qobjectfindchild-returns-wrong-address-when-used-with-a-custom-widget-plugin0QObject::findChild returns wrong address when used with a custom widget pluginyan bellavance2009-11-12T01:46:00Z2009-11-13T02:53:59Z
<p>When I call QObject::findChildren(), the address I receive is not the right address but it points to an exact copy of what im looking for. This error happens for the only case where im trying to find a custom widget plugin I have created. Whats up with that...do i need to add something to the plugin project?</p>
http://stackoverflow.com/questions/1719353/qobjectfindchild-returns-wrong-address-when-used-with-a-custom-widget-plugin/1719974#17199740Answer by yan bellavance for QObject::findChild returns wrong address when used with a custom widget pluginyan bellavance2009-11-12T04:56:45Z2009-11-13T02:53:59Z<p>it probably because you have called setupUi twice.</p>
http://stackoverflow.com/questions/1712407/cant-include-dynamic-library-header-file-in-more-than-one-file0Can't include dynamic library header file in more than one file?yan bellavance2009-11-11T01:22:08Z2009-11-11T01:35:41Z
<p>I have successfully added a dynamic library to a program, but when I try to include the header file in a second file of the project I get errors about class redeclaration. I will add more info if this isn't enough</p>
http://stackoverflow.com/questions/1711104/how-do-i-determine-if-the-item-is-selected-or-not-in-the-paint-function-of-qite0How do I determine if the item is selected or not in the paint() function of QItemDelegate?yan bellavance2009-11-10T20:52:57Z2009-11-10T23:58:28Z
<p>I am making a table using QItemDelegate. I use the paint(..) method to draw delegated items to look the same when they go out of edit mode but I also need to draw the items differently when they are selected or not and the paint method is also called during those events. My question is how do I know when to draw which? </p>
<p>thank you.</p>
http://stackoverflow.com/questions/1704231/why-can-i-not-insert-a-qstackedwidget-inside-a-custom-widget0Why can I not insert a QStackedWidget inside a custom widget?yan bellavance2009-11-09T22:06:29Z2009-11-09T22:06:29Z
<p>I have made a custom Widget based on the "Custom Widget Plugin Example". Inside that custom widget I put a QStackedWidget. The problem is that when I start coding I cannot access the stackedWidget. Why?</p>
http://stackoverflow.com/questions/1689331/is-there-a-way-to-package-a-dynamic-library-in-the-application-binary1Is there a way to package a dynamic library in the application binary?yan bellavance2009-11-06T18:10:13Z2009-11-06T18:21:57Z
<p>Hi I am developing a Qt application that uses a plugin (dynamic library) and I was wondering if there was a way I could build the application and library in one file (maybe using the QResource feature?)</p>
http://stackoverflow.com/questions/1017484/qt-designer-plugin-custom-widget-in-eclipse-integration/1685328#16853280Answer by yan bellavance for Qt designer plugin (custom widget) in Eclipse integration yan bellavance2009-11-06T04:02:11Z2009-11-06T04:02:11Z<p>Yeah sweet im having same problem and I realised as i was doing some tests that removing and adding back the dynamic library only influenced Qt designer and not Qt creator's form editor. So where is that path and can I even add it or is it somehow in the binary?</p>
http://stackoverflow.com/questions/1675499/how-do-i-auto-adjust-the-size-of-a-qdialog-depending-on-the-text-length-of-one-of0How do I auto-adjust the size of a QDialog depending on the text length of one of its children?yan bellavance2009-11-04T17:45:49Z2009-11-05T09:37:20Z
<p>I have a QDialog I am working with. It is made somewhat like a QMessageBox. I noticed that the size of the QMessageBox (and the size of its label) depends of the size of the message displayed. How would I make the size of my QDialog adjust automatically like a QMessageBox. Presently my QDialog contains a button box, a label and the QDialog is layout Vertical (I know I could just use the message box directly but eventually I will have more complexe dialogs)</p>
http://stackoverflow.com/questions/1672205/a-can-ping-b-b-can-ping-c-but-a-cant-ping-c-how-do-i-connect-a-to-c-ethernet0A can ping B, B can ping C but A cant ping C. How do i connect A to C (ethernet)? [closed]yan bellavance2009-11-04T07:30:30Z2009-11-04T07:30:30Z
<p>I have a computer at home with ip 192.168.<b>221</b>.xxx I have another computer at work that I can ping and it has 2 ip addresses: 192.168.<b>1</b>.xxx and 192.168.0.xxx. Those last 2 addresses have the same gateway ie 192.168.<b>1</b>.1 . the computer at work is connected to a hub. that hub also has an embedded device connected to it with address 192.168.<b>0</b>.xxx Now from my home computer i cannot ping this embedded device. How would I connect to it without changing the subnetwork it connects to. I can ping the embedded device from my work computer and I can ping the work computer from my home computer. So I am trying to connect to the embedded device from my home computer through my work computer. Port forwaring? how would i establish that on ubuntu</p>
http://stackoverflow.com/questions/1669533/pointer-wont-return-with-assigned-address0Pointer won't return with assigned addressyan bellavance2009-11-03T19:14:46Z2009-11-03T21:50:17Z
<p>I'm using <a href="http://en.wikipedia.org/wiki/Qt%5FCreator" rel="nofollow">Qt Creator</a> 4.5 with <a href="http://en.wikipedia.org/wiki/GNU%5FCompiler%5FCollection" rel="nofollow">GCC</a> 4.3 and I'm having the following problem that I am not sure is <a href="http://en.wikipedia.org/wiki/Qt%5F%28toolkit%29" rel="nofollow">Qt</a> or C++ related: I call a function with a <code>char *</code> as an input parameter. Inside that function I make a dynamic allocation and I assign the address to the <code>char *</code>. The problem is when the function returns it does not point to this address anymore.</p>
<pre><code>bool FPSengine::putData (char CommandByte , int Index)
{
char *msgByte;
structSize=putDatagrams(CommandByte, Index, msgByte);
}
int FPSengine::putDatagrams (char CommandByte, int Index, char *msgByte)
{
int theSize;
switch ( CommandByte ) {
case (CHANGE_CONFIGURATION): {
theSize=sizeof(MsnConfigType);
msgByte=new char[theSize];
union MConfigUnion {
char cByte[sizeof(MsnConfigType)];
MsnConfigType m;
};
MConfigUnion * msnConfig=(MConfigUnion*)msgByte;
...Do some assignments. I verify and everything is OK.
}
}
return theSize;
}
</code></pre>
<p>When I return the pointer it contains a completely different address than the one assigned in <code>putDatagrams()</code>. Why?
<br>
...<br></p>
<p>Ok thx I understand my mistake(rookie mistake :( ). When sending a pointer as an input parameter to the function you send the address of your data but not the address of your pointer so you cant make the pointer point somewhere else...it is actually a local copy like Index. The only case the data would of been returned succesfully with the use of a char * is by allocating the memory before the function call:</p>
<pre><code>bool FPSengine::putData (char CommandByte , int Index)
{
char *msgByte;
msgByte=new char[sizeof(MsnConfigType)];
structSize=putDatagrams(CommandByte, Index, msgByte);
}
int FPSengine::putDatagrams (char CommandByte, int Index, char *msgByte)
{
int theSize;
switch ( CommandByte ) {
case (CHANGE_CONFIGURATION): {
theSize=sizeof(MsnConfigType);
union MConfigUnion {
char cByte[sizeof(MsnConfigType)];
MsnConfigType m;
};
MConfigUnion * msnConfig=(MConfigUnion*)msgByte;
...Do some assignments. I verify and everything is OK.
}
}
return theSize;
}
</code></pre>
http://stackoverflow.com/questions/1592345/do-you-know-a-good-and-efficient-fft2Do you know a good and efficient FFT?yan bellavance2009-10-20T03:53:06Z2009-10-20T21:16:59Z
<p>Hi, I am trying to find a very fast and efficient Fourier transform (FFT). Does anyone know of any good ones. I need to run it on the iPhone so it must not be intensive. Instead, maybe you know of one that is wavelet like, i need frequency resolution but only a narrow band (vocal audio range up to 10khz max...even 10Khz might be too high). Im thinking also of truncating this FFT to keep the frequency resolution while eliminating the unwanted frequency band. This is for an iphone</p>
<p>...I have taken a look at the FFT in Aurio touch but it seems this is an int FFT but my app uses floats.....would it give a big performance increase to try and adapt program to an int FFT or not(which i really dont feel like doing...plus aurio touch uses a radix 2 FFT which is not that great).</p>
http://stackoverflow.com/questions/1425504/iphone-cpu-power-to-do-dsp-fourier-transform-frequency-domain/1592499#15924990Answer by yan bellavance for iPhone: CPU power to do DSP/Fourier transform/frequency domain?yan bellavance2009-10-20T04:44:27Z2009-10-20T04:44:27Z<p>You cant just port FFT code written in C into your app...there is the thumb compiler option that complicates floating point arithmetic. You need to put it in arm mode</p>
http://stackoverflow.com/questions/1589680/how-can-i-insert-a-widget-into-a-mainwindow-generated-by-qt-designer1How can I insert a widget into a mainwindow generated by Qt designer?yan bellavance2009-10-19T16:22:09Z2009-10-19T20:36:18Z
<p>I have a Main window build with Qt Designer and I also have a widget built with Qt designer (both in a separate ui file). How can I instantiate my widget into my mainwindow at runtime?</p>
http://stackoverflow.com/questions/1580930/is-there-a-way-to-emulate-a-qgroupvboxlayout0Is there a way to emulate a QGroupVBoxLayout?yan bellavance2009-10-16T23:45:16Z2009-10-17T06:20:07Z
<p>I am using Qt designer and I know how to use a QVBoxLayout and QGroupBox but it seems there is no such thing as a QGroupVBoxLayout. So I have to put a QVBoxLayout inside of a QGroupBox but if I modify the dimensions of one I have to do the same to the other. Is there a way to make them change dimensions together directly from QT designer?</p>
http://stackoverflow.com/questions/1569750/question-about-a-qlistqstringlist-in-qt3Question about a QList<QStringList> in Qtyan bellavance2009-10-15T00:47:54Z2009-10-15T10:35:48Z
<p>I'm using Qt 4.5 and im working with a <code>QList<QStringList></code> which is a list of string list.</p>
<p>Now I want to replace one string inside one stringList but with it seems unusual to type. I have found the following way of doing it and was wondering if it is ok:</p>
<pre><code>QList <QStringList> pDataList;
pDataList[listIndex].replace(QStringIndex, newString);
</code></pre>
<p>Now, I'm not worried about the syntax, but I want to know if <code>pDataList</code>'s pointers is adjascent in memory so that it is okay to use <code>[]</code>. Is there another way to do it?</p>
http://stackoverflow.com/questions/1411526/how-can-i-debug-a-program-when-debugger-fails1How can I debug a program when debugger fails.yan bellavance2009-09-11T15:11:02Z2009-09-12T13:05:10Z
<p>I am debugging an Iphone program with the simulator in xCode and I have one last issue to resolve but I need help resolving it for the following reason: when it happens the program goes into debugging mode but no errors appear (no BAD ACCESS appears) and it does not show where the code fails. Putting some variables as global helps me to see their values to start pin pointing where the bug is but before I go into this fully I would like to know what techniques/tools you guys use to debug these situations.</p>
<p>If it helps Im debugging the following: I merged some code into the SpeakHere demo. The code was added in the C++ modules of the program (AQRecorder.h and .mm). I seem to have pinpointed the problem code in a function I wrote. </p>
http://stackoverflow.com/questions/985544/modify-speakhere-to-record-audio-played-on-device/1386121#13861210Answer by yan bellavance for Modify SpeakHere to record audio played on deviceyan bellavance2009-09-06T16:58:54Z2009-09-06T16:58:54Z<p>actually I am not sure this is true. Look into aurioTouch. I asked a question like this once and someone referred me to it</p>
http://stackoverflow.com/questions/1284844/is-there-a-way-to-render-iphone-mic-input-directly-into-memory-without-working-wi1Is there a way to render IPhone mic input directly into memory without working with files?yan bellavance2009-08-16T17:34:33Z2009-08-16T17:38:48Z
<p>I see that the IPhone core audio does not include audioDevice objects to render audio input directly into RAM. I hear people talking about using files to do this(like speak here) but I am thinking there must be a way to do this otherwise. Your thoughts would be appreciated.</p>
http://stackoverflow.com/questions/1274892/how-do-i-make-an-nsview-move-to-the-front-of-all-nsviews0How do I make an NSView move to the front of all NSViewsyan bellavance2009-08-13T22:09:16Z2009-08-13T22:29:27Z
<p>Hi! How do I make an NSView window move up to the front. My app has 3 windows and when I press a button in one of them I want another to move on top of this one.</p>
http://stackoverflow.com/questions/1230030/how-can-i-refresh-core-plot-without-returning-from-a-method0How can I refresh core plot without returning from a method?yan bellavance2009-08-04T21:30:55Z2009-08-07T14:36:44Z
<p>Hi. I have a cocoa interface that uses core plot. When I press a button in the interface, a plot is drawn. I wanted to create a sequence of graphs by calling the plotting method multiple times along with calls to sleep() in between. But it seems that even though the call to reload data is made that nothing happens until the function exits(only showing last graph as well). Now I know that CPAnimation exists but before I start using it I was wondering what it is that happens when the function exits that makes the graph refresh. Would I have to yield to the thread that takes care of the refreshing instead of using sleep?</p>
http://stackoverflow.com/questions/1239938/c-accesses-an-array-out-of-bounds-gives-no-error-why/1240130#12401300Answer by yan bellavance for C++ Accesses an Array out of bounds gives no error, why?yan bellavance2009-08-06T16:44:24Z2009-08-06T16:44:24Z<p>when you declare int array[2]; you reserve 2 memory spaces of 4 bytes each(32bit program).
if you type array[4] in your code it still corresponds to a valid call but only at run time will it throw an unhandled exception. C++ uses manual memory management. This is actually a security flaw that was used for hacking programs</p>
<p>this can help understanding:</p>
<p>int * somepointer; </p>
<p>somepointer[0]=somepointer[5];</p>
http://stackoverflow.com/questions/1224784/how-do-i-pause-a-function-in-c-or-objective-c-on-mac-without-using-sleep1How do I pause a function in c or objective-c on mac without using sleep()yan bellavance2009-08-03T21:45:46Z2009-08-06T16:33:54Z
<p>Hi I would like to pause the execution of a function in an cocoa project. I dont want to use sleep() because the function needs to resume after user interaction. I also want to avoid doing this with multiple calls to sleep.</p>
<p>Thanks for your responses. Ok I started the code while waiting for some answers. I then realized that sleep or pause would not be usefull to me because it freeses my whole program. I think I might have to do some threading. Here is the situation: </p>
<p>I have a program that uses coreplot. I also use it to debug and develop algorithms so I do lots of plots while the data is being processed (ie in the midfle of the code but I need the flexibility to put it anywhaere so I cant separate my function). I was able to do this with NSRunAlertPanel but having a message box like that doesnt make it very presentable and I cant do much with the main window while an alert is open.</p>
<p>I hope I am not too confusing with my explanation but if I am ill try to one line it here:</p>
<p>I would like to interact with my cocoa interface while one of my functions is stopped in the middle of what it is doing.</p>
http://stackoverflow.com/questions/1230569/is-there-a-way-to-pause-an-nsthread-indefinitely-and-have-it-resumed-from-anothe0is there a way to pause an NSTHread indefinitely and have it resumed from another thread?yan bellavance2009-08-05T00:17:02Z2009-08-05T18:52:45Z
<p>Seems these are the only methods to put a NSThread to sleep </p>
<pre><code>* sleepForTimeInterval:
* sleepUntilDate:
</code></pre>
<p>Would it be bad practice what I am asking?</p>
http://stackoverflow.com/questions/1225700/can-i-start-a-thread-by-pressing-a-button-in-a-cocoa-interface-and-keep-using-int1Can I start a thread by pressing a button in a cocoa interface and keep using interface while thread runs?yan bellavance2009-08-04T04:11:31Z2009-08-05T08:23:52Z
<p>I have a Cocoa interface. When I press a button I want to process some data, but I want to keep using the interface while it's working. I guess the only solution is NSThread. Now will there be a locking mechanism preventing me from returning from an IBAction method if it spawns a thread?</p>
http://stackoverflow.com/questions/1801167/how-can-i-connect-the-pressed-signal-of-32-buttons-to-a-single-function-without/1801207#1801207Comment by yan bellavance on How can I connect the pressed() signal of 32 buttons to a single function without declaring 32 slots?yan bellavance2009-11-26T03:08:07Z2009-11-26T03:08:07Zyep, everything worked out thx againhttp://stackoverflow.com/questions/1801167/how-can-i-connect-the-pressed-signal-of-32-buttons-to-a-single-function-without/1801207#1801207Comment by yan bellavance on How can I connect the pressed() signal of 32 buttons to a single function without declaring 32 slots?yan bellavance2009-11-26T02:21:50Z2009-11-26T02:21:50Zthx, i'm pretty sure this is what I needhttp://stackoverflow.com/questions/1801167/how-can-i-connect-the-pressed-signal-of-32-buttons-to-a-single-function-without/1801175#1801175Comment by yan bellavance on How can I connect the pressed() signal of 32 buttons to a single function without declaring 32 slots?yan bellavance2009-11-26T02:08:48Z2009-11-26T02:08:48Zi think I might scratch that it might not work
http://stackoverflow.com/questions/1744144/adding-ifndef-define-endif-breaks-the-compile/1744196#1744196Comment by yan bellavance on adding #ifndef #define #endif breaks the compileyan bellavance2009-11-17T01:54:15Z2009-11-17T01:54:15Zok I will look into it..sorry i am at work and didnt have much time today to look at it. Thx for your answers thoughhttp://stackoverflow.com/questions/1744144/adding-ifndef-define-endif-breaks-the-compile/1744196#1744196Comment by yan bellavance on adding #ifndef #define #endif breaks the compileyan bellavance2009-11-16T21:16:32Z2009-11-16T21:16:32ZI was hoping to understand why this is so.http://stackoverflow.com/questions/1744144/adding-ifndef-define-endif-breaks-the-compile/1744196#1744196Comment by yan bellavance on adding #ifndef #define #endif breaks the compileyan bellavance2009-11-16T19:34:45Z2009-11-16T19:34:45Zas I said, everything compiles fine when I put rubbish as the constant.http://stackoverflow.com/questions/1731620/is-there-a-way-to-have-all-radion-buttons-be-uncheckedComment by yan bellavance on Is there a way to have all radion buttons be uncheckedyan bellavance2009-11-16T16:47:52Z2009-11-16T16:47:52ZThat is exactly why I need this.http://stackoverflow.com/questions/1731620/is-there-a-way-to-have-all-radion-buttons-be-unchecked/1731703#1731703Comment by yan bellavance on Is there a way to have all radion buttons be uncheckedyan bellavance2009-11-13T22:50:53Z2009-11-13T22:50:53Zwell when the program initially launches none of the radio buttons are selected. CheckBoxes would add too much overhead. http://stackoverflow.com/questions/1731620/is-there-a-way-to-have-all-radion-buttons-be-unchecked/1731667#1731667Comment by yan bellavance on Is there a way to have all radion buttons be uncheckedyan bellavance2009-11-13T22:49:39Z2009-11-13T22:49:39ZYeah I thought about thathttp://stackoverflow.com/questions/1725601/qt-increase-qtabwidgets-qtabbar-size/1727383#1727383Comment by yan bellavance on Qt Increase QTabWidget's QTabBar sizeyan bellavance2009-11-13T06:55:15Z2009-11-13T06:55:15ZI recommend using stylesheets as well. http://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1713275#1713275Comment by yan bellavance on Insertion Sort Code Challengeyan bellavance2009-11-13T06:19:42Z2009-11-13T06:19:42Zfixed somethinghttp://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1713275#1713275Comment by yan bellavance on Insertion Sort Code Challengeyan bellavance2009-11-13T02:50:04Z2009-11-13T02:50:04ZYou seriously didnt have to vote down on this one. If you cant get the point of it then you QQ too muchhttp://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1713275#1713275Comment by yan bellavance on Insertion Sort Code Challengeyan bellavance2009-11-13T02:46:27Z2009-11-13T02:46:27Zit should work now
http://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1713275#1713275Comment by yan bellavance on Insertion Sort Code Challengeyan bellavance2009-11-12T15:25:32Z2009-11-12T15:25:32Zwell in this case the compiler already know the size of the arrays so would simplify.http://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1713206#1713206Comment by yan bellavance on Insertion Sort Code Challengeyan bellavance2009-11-11T06:01:45Z2009-11-11T06:01:45Zvery nice... I see emos everywhere [>.@]