ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/clip_unix.cpp
(Generate patch)

Comparing SheepShaver/src/Unix/clip_unix.cpp (file contents):
Revision 1.8 by cebix, 2004-01-12T15:37:21Z vs.
Revision 1.9 by gbeauche, 2004-01-16T15:36:14Z

# Line 142 | Line 142 | static Atom xa_atom_pair;
142   // Define a byte array (rewrite if it's a bottleneck)
143   struct ByteArray : public vector<uint8> {
144          void resize(int size) { reserve(size); vector<uint8>::resize(size); }
145 <        uint8 *data() { return &at(0); }
145 >        uint8 *data() { return &(*this)[0]; }
146   };
147  
148   // Clipboard data for requestors
# Line 556 | Line 556 | static bool handle_selection_TARGETS(XSe
556          // Change requestor property
557          XChangeProperty(x_display, req->requestor, req->property,
558                                          xa_targets, 32,
559 <                                        PropModeReplace, (uint8 *)&targets.at(0), targets.size());
559 >                                        PropModeReplace, (uint8 *)&targets[0], targets.size());
560  
561          return true;
562   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines